[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/libraries/htmlpurifier/library/ -> HTMLPurifier.func.php (source)

   1  <?php
   2  
   3  /**
   4   * @file
   5   * Defines a function wrapper for HTML Purifier for quick use.
   6   * @note ''HTMLPurifier()'' is NOT the same as ''new HTMLPurifier()''
   7   */
   8  
   9  /**
  10   * Purify HTML.
  11   * @param $html String HTML to purify
  12   * @param $config Configuration to use, can be any value accepted by
  13   *        HTMLPurifier_Config::create()
  14   */
  15  function HTMLPurifier($html, $config = null) {
  16      static $purifier = false;
  17      if (!$purifier) {
  18          $purifier = new HTMLPurifier();
  19      }
  20      return $purifier->purify($html, $config);
  21  }
  22  
  23  // vim: et sw=4 sts=4


Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1