XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
Name.php
Go to the documentation of this file.
1 <?php
2 
4 {
5 
6  public $name = 'Name';
7 
8  public function setup($config) {
9  $elements = array('a', 'applet', 'form', 'frame', 'iframe', 'img', 'map');
10  foreach ($elements as $name) {
11  $element = $this->addBlankElement($name);
12  $element->attr['name'] = 'CDATA';
13  if (!$config->get('HTML.Attr.Name.UseCDATA')) {
14  $element->attr_transform_post['NameSync'] = new HTMLPurifier_AttrTransform_NameSync();
15  }
16  }
17  }
18 
19 }
20 
21 // vim: et sw=4 sts=4