ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Hypertext.php
Go to the documentation of this file.
1 <?php
2 
7 {
8 
12  public $name = 'Hypertext';
13 
17  public function setup($config)
18  {
19  $a = $this->addElement(
20  'a',
21  'Inline',
22  'Inline',
23  'Common',
24  array(
25  // 'accesskey' => 'Character',
26  // 'charset' => 'Charset',
27  'href' => 'URI',
28  // 'hreflang' => 'LanguageCode',
29  'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'),
30  'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'),
31  // 'tabindex' => 'Number',
32  // 'type' => 'ContentType',
33  )
34  );
35  $a->formatting = true;
36  $a->excludes = array('a' => true);
37  }
38 }
39 
40 // vim: et sw=4 sts=4