ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
SafeScripting.php
Go to the documentation of this file.
1 <?php
2 
8 {
9 
10  public $name = 'SafeScripting';
11 
12  public function setup($config) {
13 
14  // These definitions are not intrinsically safe: the attribute transforms
15  // are a vital part of ensuring safety.
16 
17  $allowed = $config->get('HTML.SafeScripting');
18  $script = $this->addElement(
19  'script',
20  'Inline',
21  'Empty',
22  null,
23  array(
24  // While technically not required by the spec, we're forcing
25  // it to this value.
26  'type' => 'Enum#text/javascript',
27  'src*' => new HTMLPurifier_AttrDef_Enum(array_keys($allowed))
28  )
29  );
30  $script->attr_transform_pre[] =
31  $script->attr_transform_post[] = new HTMLPurifier_AttrTransform_ScriptRequired();
32 
33  }
34 
35 }
36 
37 // vim: et sw=4 sts=4
addElement($element, $type, $contents, $attr_includes=array(), $attr=array())
Convenience function that sets up a new element.
Definition: HTMLModule.php:130
Represents an XHTML 1.1 module, with information on elements, tags and attributes.
Definition: HTMLModule.php:18
Validates a keyword against a list of valid values.
Definition: Enum.php:10
Implements required attribute stipulation for <script>