Ejemplo n.º 1
0
 /**
  * Load config for text parser
  *
  * @param string $sType
  * @param bool   $bClear
  */
 protected function _loadTextParserConfig($sType = 'default', $bClear = true)
 {
     $this->oTextParser->loadConfig($sType, $bClear);
     foreach ($this->aCheckTagLinks as $sTag => $aParams) {
         $this->oTextParser->tagBuilder($sTag, array($this, 'CallbackCheckLinks'));
     }
     $this->oTextParser->tagBuilder('ls', array($this, 'CallbackTagLs'));
 }