Ejemplo n.º 1
0
 /**
  * Constructor
  *
  * @access	protected
  */
 function __construct($debug = false)
 {
     parent::__construct();
     $this->debug = $debug;
     if (!$this->prepContentFuncs) {
         $plgs = JPluginHelper::getPlugin('content');
         $this->prepContentFuncs = array();
         if ($this->debug) {
             echo "<b>Finding custom method names for content events</b>:<br>";
         }
         foreach ($plgs as $plg) {
             $content_plgs[] = $plg->name;
             $this->findPrepContFuncs($plg);
         }
     }
 }
Ejemplo n.º 2
0
 function __construct()
 {
     parent::__construct();
 }