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

Represents an XHTML 1.1 module, with information on elements, tags and attributes. More...

+ Inheritance diagram for HTMLPurifier_HTMLModule:
+ Collaboration diagram for HTMLPurifier_HTMLModule:

Public Member Functions

 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
 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

Represents an XHTML 1.1 module, with information on elements, tags and attributes.

Note
Even though this is technically XHTML 1.1, it is also used for regular HTML parsing. We are using modulization as a convenient way to represent the internals of HTMLDefinition, and our implementation is by no means conforming and does not directly use the normative DTDs or XML schemas.
The public variables in a module should almost directly correspond to the variables in HTMLPurifier_HTMLDefinition. However, the prefix info carries no special meaning in these objects (include it anyway if that's the correspondence though).
Todo:
Consider making some member functions protected

Definition at line 18 of file HTMLModule.php.

Member Function Documentation

◆ addBlankElement()

HTMLPurifier_HTMLModule::addBlankElement (   $element)

Convenience function that creates a totally blank, non-standalone element.

Parameters
$elementName of element to create
Returns
Created element

Definition at line 153 of file HTMLModule.php.

Referenced by HTMLPurifier_HTMLModule_Tidy\populate(), HTMLPurifier_HTMLModule_Name\setup(), HTMLPurifier_HTMLModule_Target\setup(), HTMLPurifier_HTMLModule_Nofollow\setup(), HTMLPurifier_HTMLModule_TargetBlank\setup(), and HTMLPurifier_HTMLModule_Legacy\setup().

153  {
154  if (!isset($this->info[$element])) {
155  $this->elements[] = $element;
156  $this->info[$element] = new HTMLPurifier_ElementDef();
157  $this->info[$element]->standalone = false;
158  } else {
159  trigger_error("Definition for $element already exists in module, cannot redefine");
160  }
161  return $this->info[$element];
162  }
Structure that stores an HTML element definition.
Definition: ElementDef.php:11
+ Here is the caller graph for this function:

◆ addElement()

HTMLPurifier_HTMLModule::addElement (   $element,
  $type,
  $contents,
  $attr_includes = array(),
  $attr = array() 
)

Convenience function that sets up a new element.

Parameters
$elementName of element to add
$typeWhat content set should element be registered to? Set as false to skip this step.
$contentsAllowed children in form of: "$content_model_type: $content_model"
$attr_includesWhat attribute collections to register to element?
$attrWhat unique attributes does the element define?
Note
See ElementDef for in-depth descriptions of these parameters.
Returns
Created element definition object, so you can set advanced parameters

Definition at line 130 of file HTMLModule.php.

References addElementToContentSet(), HTMLPurifier_ElementDef\create(), mergeInAttrIncludes(), and parseContents().

Referenced by HTMLPurifier_HTMLModule_SafeEmbed\setup(), HTMLPurifier_HTMLModule_Hypertext\setup(), HTMLPurifier_HTMLModule_Tables\setup(), HTMLPurifier_HTMLModule_Ruby\setup(), HTMLPurifier_HTMLModule_SafeScripting\setup(), HTMLPurifier_HTMLModule_Edit\setup(), HTMLPurifier_HTMLModule_Proprietary\setup(), HTMLPurifier_HTMLModule_Image\setup(), HTMLPurifier_HTMLModule_Object\setup(), HTMLPurifier_HTMLModule_SafeObject\setup(), HTMLPurifier_HTMLModule_Bdo\setup(), HTMLPurifier_HTMLModule_Iframe\setup(), HTMLPurifier_HTMLModule_Forms\setup(), HTMLPurifier_HTMLModule_Presentation\setup(), HTMLPurifier_HTMLModule_List\setup(), HTMLPurifier_HTMLModule_Text\setup(), and HTMLPurifier_HTMLModule_Legacy\setup().

130  {
131  $this->elements[] = $element;
132  // parse content_model
133  list($content_model_type, $content_model) = $this->parseContents($contents);
134  // merge in attribute inclusions
135  $this->mergeInAttrIncludes($attr, $attr_includes);
136  // add element to content sets
137  if ($type) $this->addElementToContentSet($element, $type);
138  // create element
139  $this->info[$element] = HTMLPurifier_ElementDef::create(
140  $content_model, $content_model_type, $attr
141  );
142  // literal object $contents means direct child manipulation
143  if (!is_string($contents)) $this->info[$element]->child = $contents;
144  return $this->info[$element];
145  }
addElementToContentSet($element, $type)
Convenience function that registers an element to a content set.
Definition: HTMLModule.php:170
mergeInAttrIncludes(&$attr, $attr_includes)
Convenience function that merges a list of attribute includes into an attribute array.
Definition: HTMLModule.php:208
parseContents($contents)
Convenience function that transforms single-string contents into separate content model and content m...
Definition: HTMLModule.php:185
static create($content_model, $content_model_type, $attr)
Low-level factory constructor for creating new standalone element defs.
Definition: ElementDef.php:128
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ addElementToContentSet()

HTMLPurifier_HTMLModule::addElementToContentSet (   $element,
  $type 
)

Convenience function that registers an element to a content set.

Parameters
Elementto register
Namecontent set (warning: case sensitive, usually upper-case first letter)

Definition at line 170 of file HTMLModule.php.

Referenced by addElement().

170  {
171  if (!isset($this->content_sets[$type])) $this->content_sets[$type] = '';
172  else $this->content_sets[$type] .= ' | ';
173  $this->content_sets[$type] .= $element;
174  }
+ Here is the caller graph for this function:

◆ getChildDef()

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.

There is a similar function in HTMLPurifier_HTMLDefinition.

Parameters
$defHTMLPurifier_ElementDef instance
Returns
HTMLPurifier_ChildDef subclass

Definition at line 112 of file HTMLModule.php.

112 {return false;}

◆ makeLookup()

HTMLPurifier_HTMLModule::makeLookup (   $list)

Convenience function that generates a lookup table with boolean true as value.

Parameters
$listList of values to turn into a lookup
Note
You can also pass an arbitrary number of arguments in place of the regular argument
Returns
Lookup array equivalent of list

Definition at line 224 of file HTMLModule.php.

References $ret.

Referenced by HTMLPurifier_HTMLModule_Forms\setup(), and HTMLPurifier_HTMLModule_Text\setup().

224  {
225  if (is_string($list)) $list = func_get_args();
226  $ret = array();
227  foreach ($list as $value) {
228  if (is_null($value)) continue;
229  $ret[$value] = true;
230  }
231  return $ret;
232  }
+ Here is the caller graph for this function:

◆ mergeInAttrIncludes()

HTMLPurifier_HTMLModule::mergeInAttrIncludes ( $attr,
  $attr_includes 
)

Convenience function that merges a list of attribute includes into an attribute array.

Parameters
$attrReference to attr array to modify
$attr_includesArray of includes / string include to merge in

Definition at line 208 of file HTMLModule.php.

Referenced by addElement().

208  {
209  if (!is_array($attr_includes)) {
210  if (empty($attr_includes)) $attr_includes = array();
211  else $attr_includes = array($attr_includes);
212  }
213  $attr[0] = $attr_includes;
214  }
+ Here is the caller graph for this function:

◆ parseContents()

HTMLPurifier_HTMLModule::parseContents (   $contents)

Convenience function that transforms single-string contents into separate content model and content model type.

Parameters
$contentsAllowed children in form of: "$content_model_type: $content_model"
Note
If contents is an object, an array of two nulls will be returned, and the callee needs to take the original $contents and use it directly.

Definition at line 185 of file HTMLModule.php.

Referenced by addElement().

185  {
186  if (!is_string($contents)) return array(null, null); // defer
187  switch ($contents) {
188  // check for shorthand content model forms
189  case 'Empty':
190  return array('empty', '');
191  case 'Inline':
192  return array('optional', 'Inline | #PCDATA');
193  case 'Flow':
194  return array('optional', 'Flow | #PCDATA');
195  }
196  list($content_model_type, $content_model) = explode(':', $contents);
197  $content_model_type = strtolower(trim($content_model_type));
198  $content_model = trim($content_model);
199  return array($content_model_type, $content_model);
200  }
+ Here is the caller graph for this function:

◆ setup()

HTMLPurifier_HTMLModule::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.

Parameters
$configInstance of HTMLPurifier_Config

Definition at line 240 of file HTMLModule.php.

240 {}

Field Documentation

◆ $attr_collections

HTMLPurifier_HTMLModule::$attr_collections = array()

Associative array of attribute collection names to attribute collection additions.

More rarely used for adding attributes to the global collections. Example is the StyleAttribute module adding the style attribute to the Core. Corresponds to HTMLDefinition's attr_collections->info, since the object's data is only info, with extra behavior associated with it.

Definition at line 57 of file HTMLModule.php.

◆ $content_sets

HTMLPurifier_HTMLModule::$content_sets = array()

Associative array of content set names to content set additions.

This is commonly used to, say, add an A element to the Inline content set. This corresponds to an internal variable $content_sets and NOT info_content_sets member variable of HTMLDefinition.

Definition at line 47 of file HTMLModule.php.

◆ $defines_child_def

HTMLPurifier_HTMLModule::$defines_child_def = false

Boolean flag that indicates whether or not getChildDef is implemented.

For optimization reasons: may save a call to a function. Be sure to set it if you do implement getChildDef(), otherwise it will have no effect!

Definition at line 88 of file HTMLModule.php.

◆ $elements

HTMLPurifier_HTMLModule::$elements = array()

Informally, a list of elements this module changes.

Not used in any significant way.

Definition at line 32 of file HTMLModule.php.

Referenced by HTMLPurifier_HTMLModule_Name\setup(), and HTMLPurifier_HTMLModule_Target\setup().

◆ $info

HTMLPurifier_HTMLModule::$info = array()

Associative array of element names to element definitions.

Some definitions may be incomplete, to be merged in later with the full definition.

Definition at line 39 of file HTMLModule.php.

◆ $info_attr_transform_post

HTMLPurifier_HTMLModule::$info_attr_transform_post = array()

List of HTMLPurifier_AttrTransform to be performed after validation.

Definition at line 72 of file HTMLModule.php.

◆ $info_attr_transform_pre

HTMLPurifier_HTMLModule::$info_attr_transform_pre = array()

List of HTMLPurifier_AttrTransform to be performed before validation.

Definition at line 67 of file HTMLModule.php.

◆ $info_injector

HTMLPurifier_HTMLModule::$info_injector = array()

List of HTMLPurifier_Injector to be performed during well-formedness fixing.

An injector will only be invoked if all of it's pre-requisites are met; if an injector fails setup, there will be no error; it will simply be silently disabled.

Definition at line 80 of file HTMLModule.php.

◆ $info_tag_transform

HTMLPurifier_HTMLModule::$info_tag_transform = array()

Associative array of deprecated tag name to HTMLPurifier_TagTransform.

Definition at line 62 of file HTMLModule.php.

◆ $name

HTMLPurifier_HTMLModule::$name

Short unique string identifier of the module.

Definition at line 26 of file HTMLModule.php.

Referenced by HTMLPurifier_HTMLModule_Tidy\getFixType(), HTMLPurifier_HTMLModule_Tidy\populate(), and HTMLPurifier_HTMLModule_Tidy\setup().

◆ $safe

HTMLPurifier_HTMLModule::$safe = true

Boolean flag whether or not this module is safe.

If it is not safe, all of its members are unsafe. Modules are safe by default (this might be slightly dangerous, but it doesn't make much sense to force HTML Purifier, which is based off of safe HTML, to explicitly say, "This is safe," even though there are modules which are "unsafe")

Note
Previously, safety could be applied at an element level granularity. We've removed this ability, so in order to add "unsafe" elements or attributes, a dedicated module with this property set to false must be used.

Definition at line 102 of file HTMLModule.php.


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