Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

41 line
996B

  1. <?php
  2. /**
  3. * XHTML 1.1 Hypertext Module, defines hypertext links. Core Module.
  4. */
  5. class HTMLPurifier_HTMLModule_Hypertext extends HTMLPurifier_HTMLModule
  6. {
  7. /**
  8. * @type string
  9. */
  10. public $name = 'Hypertext';
  11. /**
  12. * @param HTMLPurifier_Config $config
  13. */
  14. public function setup($config)
  15. {
  16. $a = $this->addElement(
  17. 'a',
  18. 'Inline',
  19. 'Inline',
  20. 'Common',
  21. array(
  22. // 'accesskey' => 'Character',
  23. // 'charset' => 'Charset',
  24. 'href' => 'URI',
  25. // 'hreflang' => 'LanguageCode',
  26. 'rel' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rel'),
  27. 'rev' => new HTMLPurifier_AttrDef_HTML_LinkTypes('rev'),
  28. // 'tabindex' => 'Number',
  29. // 'type' => 'ContentType',
  30. )
  31. );
  32. $a->formatting = true;
  33. $a->excludes = array('a' => true);
  34. }
  35. }
  36. // vim: et sw=4 sts=4