[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

/se3master/var/www/se3/includes/library/HTMLPurifier/HTMLModule/ -> Target.php (source)

   1  <?php
   2  
   3  /**
   4   * XHTML 1.1 Target Module, defines target attribute in link elements.
   5   */
   6  class HTMLPurifier_HTMLModule_Target extends HTMLPurifier_HTMLModule
   7  {
   8      /**
   9       * @type string
  10       */
  11      public $name = 'Target';
  12  
  13      /**
  14       * @param HTMLPurifier_Config $config
  15       */
  16      public function setup($config)
  17      {
  18          $elements = array('a');
  19          foreach ($elements as $name) {
  20              $e = $this->addBlankElement($name);
  21              $e->attr = array(
  22                  'target' => new HTMLPurifier_AttrDef_HTML_FrameTarget()
  23              );
  24          }
  25      }
  26  }
  27  
  28  // vim: et sw=4 sts=4


Generated: Tue Mar 17 22:47:18 2015 Cross-referenced by PHPXref 0.7.1