ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
HTMLPurifier_HTMLModule_Forms Class Reference

XHTML 1.1 Forms module, defines all form-related elements found in HTML 4. More...

+ Inheritance diagram for HTMLPurifier_HTMLModule_Forms:
+ Collaboration diagram for HTMLPurifier_HTMLModule_Forms:

Public Member Functions

 setup ($config)
 
- Public Member Functions inherited from HTMLPurifier_HTMLModule
 getChildDef ($def)
 Retrieves a proper HTMLPurifier_ChildDef subclass based on content_model and content_model_type member variables of the HTMLPurifier_ElementDef class. More...
 
 addElement ($element, $type, $contents, $attr_includes=array(), $attr=array())
 Convenience function that sets up a new element. More...
 
 addBlankElement ($element)
 Convenience function that creates a totally blank, non-standalone element. More...
 
 addElementToContentSet ($element, $type)
 Convenience function that registers an element to a content set. More...
 
 parseContents ($contents)
 Convenience function that transforms single-string contents into separate content model and content model type. More...
 
 mergeInAttrIncludes (&$attr, $attr_includes)
 Convenience function that merges a list of attribute includes into an attribute array. More...
 
 makeLookup ($list)
 Convenience function that generates a lookup table with boolean true as value. More...
 
 setup ($config)
 Lazy load construction of the module after determining whether or not it's needed, and also when a finalized configuration object is available. More...
 

Data Fields

 $name = 'Forms'
 
 $safe = false
 
 $content_sets
 
- Data Fields inherited from HTMLPurifier_HTMLModule
 $name
 Short unique string identifier of the module. More...
 
 $elements = array()
 Informally, a list of elements this module changes. More...
 
 $info = array()
 Associative array of element names to element definitions. More...
 
 $content_sets = array()
 Associative array of content set names to content set additions. More...
 
 $attr_collections = array()
 Associative array of attribute collection names to attribute collection additions. More...
 
 $info_tag_transform = array()
 Associative array of deprecated tag name to HTMLPurifier_TagTransform. More...
 
 $info_attr_transform_pre = array()
 List of HTMLPurifier_AttrTransform to be performed before validation. More...
 
 $info_attr_transform_post = array()
 List of HTMLPurifier_AttrTransform to be performed after validation. More...
 
 $info_injector = array()
 List of HTMLPurifier_Injector to be performed during well-formedness fixing. More...
 
 $defines_child_def = false
 Boolean flag that indicates whether or not getChildDef is implemented. More...
 
 $safe = true
 Boolean flag whether or not this module is safe. More...
 

Detailed Description

XHTML 1.1 Forms module, defines all form-related elements found in HTML 4.

Definition at line 6 of file Forms.php.

Member Function Documentation

◆ setup()

HTMLPurifier_HTMLModule_Forms::setup (   $config)

Definition at line 16 of file Forms.php.

References HTMLPurifier_HTMLModule\addElement(), and HTMLPurifier_HTMLModule\makeLookup().

16  {
17  $form = $this->addElement('form', 'Form',
18  'Required: Heading | List | Block | fieldset', 'Common', array(
19  'accept' => 'ContentTypes',
20  'accept-charset' => 'Charsets',
21  'action*' => 'URI',
22  'method' => 'Enum#get,post',
23  // really ContentType, but these two are the only ones used today
24  'enctype' => 'Enum#application/x-www-form-urlencoded,multipart/form-data',
25  ));
26  $form->excludes = array('form' => true);
27 
28  $input = $this->addElement('input', 'Formctrl', 'Empty', 'Common', array(
29  'accept' => 'ContentTypes',
30  'accesskey' => 'Character',
31  'alt' => 'Text',
32  'checked' => 'Bool#checked',
33  'disabled' => 'Bool#disabled',
34  'maxlength' => 'Number',
35  'name' => 'CDATA',
36  'readonly' => 'Bool#readonly',
37  'size' => 'Number',
38  'src' => 'URI#embedded',
39  'tabindex' => 'Number',
40  'type' => 'Enum#text,password,checkbox,button,radio,submit,reset,file,hidden,image',
41  'value' => 'CDATA',
42  ));
43  $input->attr_transform_post[] = new HTMLPurifier_AttrTransform_Input();
44 
45  $this->addElement('select', 'Formctrl', 'Required: optgroup | option', 'Common', array(
46  'disabled' => 'Bool#disabled',
47  'multiple' => 'Bool#multiple',
48  'name' => 'CDATA',
49  'size' => 'Number',
50  'tabindex' => 'Number',
51  ));
52 
53  $this->addElement('option', false, 'Optional: #PCDATA', 'Common', array(
54  'disabled' => 'Bool#disabled',
55  'label' => 'Text',
56  'selected' => 'Bool#selected',
57  'value' => 'CDATA',
58  ));
59  // It's illegal for there to be more than one selected, but not
60  // be multiple. Also, no selected means undefined behavior. This might
61  // be difficult to implement; perhaps an injector, or a context variable.
62 
63  $textarea = $this->addElement('textarea', 'Formctrl', 'Optional: #PCDATA', 'Common', array(
64  'accesskey' => 'Character',
65  'cols*' => 'Number',
66  'disabled' => 'Bool#disabled',
67  'name' => 'CDATA',
68  'readonly' => 'Bool#readonly',
69  'rows*' => 'Number',
70  'tabindex' => 'Number',
71  ));
72  $textarea->attr_transform_pre[] = new HTMLPurifier_AttrTransform_Textarea();
73 
74  $button = $this->addElement('button', 'Formctrl', 'Optional: #PCDATA | Heading | List | Block | Inline', 'Common', array(
75  'accesskey' => 'Character',
76  'disabled' => 'Bool#disabled',
77  'name' => 'CDATA',
78  'tabindex' => 'Number',
79  'type' => 'Enum#button,submit,reset',
80  'value' => 'CDATA',
81  ));
82 
83  // For exclusions, ideally we'd specify content sets, not literal elements
84  $button->excludes = $this->makeLookup(
85  'form', 'fieldset', // Form
86  'input', 'select', 'textarea', 'label', 'button', // Formctrl
87  'a', // as per HTML 4.01 spec, this is omitted by modularization
88  'isindex', 'iframe' // legacy items
89  );
90 
91  // Extra exclusion: img usemap="" is not permitted within this element.
92  // We'll omit this for now, since we don't have any good way of
93  // indicating it yet.
94 
95  // This is HIGHLY user-unfriendly; we need a custom child-def for this
96  $this->addElement('fieldset', 'Form', 'Custom: (#WS?,legend,(Flow|#PCDATA)*)', 'Common');
97 
98  $label = $this->addElement('label', 'Formctrl', 'Optional: #PCDATA | Inline', 'Common', array(
99  'accesskey' => 'Character',
100  // 'for' => 'IDREF', // IDREF not implemented, cannot allow
101  ));
102  $label->excludes = array('label' => true);
103 
104  $this->addElement('legend', false, 'Optional: #PCDATA | Inline', 'Common', array(
105  'accesskey' => 'Character',
106  ));
107 
108  $this->addElement('optgroup', false, 'Required: option', 'Common', array(
109  'disabled' => 'Bool#disabled',
110  'label*' => 'Text',
111  ));
112 
113  // Don't forget an injector for <isindex>. This one's a little complex
114  // because it maps to multiple elements.
115 
116  }
Sets height/width defaults for <textarea>
Definition: Textarea.php:6
makeLookup($list)
Convenience function that generates a lookup table with boolean true as value.
Definition: HTMLModule.php:224
Performs miscellaneous cross attribute validation and filtering for input elements.
Definition: Input.php:7
addElement($element, $type, $contents, $attr_includes=array(), $attr=array())
Convenience function that sets up a new element.
Definition: HTMLModule.php:130
+ Here is the call graph for this function:

Field Documentation

◆ $content_sets

HTMLPurifier_HTMLModule_Forms::$content_sets
Initial value:
= array(
'Block' => 'Form',
'Inline' => 'Formctrl',
)

Definition at line 11 of file Forms.php.

◆ $name

HTMLPurifier_HTMLModule_Forms::$name = 'Forms'

Definition at line 8 of file Forms.php.

◆ $safe

HTMLPurifier_HTMLModule_Forms::$safe = false

Definition at line 9 of file Forms.php.


The documentation for this class was generated from the following file: