public AdvancedForm(string description, string instructions, string container, string title)
 {
     Description  = new EditorPart(description);
     Title        = title;
     Instructions = new EditorPart(instructions);
     Container    = new EditorPart(container);
 }
 public AdvancedFormSubmissions(string submission, string metadata, string title, string container)
 {
     Submission = new EditorPart(submission);
     Title      = title;
     Metadata   = new EditorPart(metadata);
     Container  = new EditorPart(container);
 }
Ejemplo n.º 3
0
 public AdvancedForm(string description, string instructions, string container, string title, string header, string footer, string tag)
 {
     Description  = new EditorPart(description);
     Title        = title;
     Instructions = new EditorPart(instructions);
     Container    = new EditorPart(container);
     Header       = new EditorPart(header);
     Footer       = new EditorPart(footer);
     Tag          = new TextPart(tag);
 }
 public AdvancedFormSubmissions(string submission, string metadata, string title, string container, string header, string footer, string description, string tag, string instructions)
 {
     Submission   = new EditorPart(submission);
     Title        = title;
     Metadata     = new EditorPart(metadata);
     Container    = new EditorPart(container);
     Header       = new EditorPart(header);
     Footer       = new EditorPart(footer);
     Description  = new EditorPart(description);
     Instructions = new EditorPart(instructions);
     Tag          = new TextPart(tag);
 }
 public AdvancedForm(string description, string instructions, string container, string title, string header, string footer, string type, string adminContainer, bool isHideFromListing, bool isGlobalHeader, bool isGlobalFooter, string group, string formFields)
 {
     Description     = new EditorPart(description);
     Title           = title;
     Instructions    = new EditorPart(instructions);
     Container       = new JSonEditorPart(container);
     FormFields      = new JSonEditorPart(formFields);
     AdminContainer  = new JSonEditorPart(adminContainer);
     Header          = new EditorPart(header);
     Footer          = new EditorPart(footer);
     Type            = new TextPart(type);
     Group           = new TextPart(group);
     HideFromListing = new BooleanPart(isHideFromListing);
     IsGlobalHeader  = new BooleanPart(isGlobalHeader);
     IsGlobalFooter  = new BooleanPart(isGlobalFooter);
 }
Ejemplo n.º 6
0
 public CommentPart(string comment, string attachement)
 {
     Comment    = new EditorPart(comment);
     Attachment = new TextPart(attachement);
 }