Beispiel #1
0
 function getParameters()
 {
     if (!$this->_params) {
         $this->_params = AriMambotHelper::getParameters($this->_tag, $this->_type);
     }
     return $this->_params;
 }
Beispiel #2
0
 function parseTagList($matches)
 {
     $false = false;
     $callback =& AriMambotHelper::_currentCallback($false);
     if (!empty($callback) && isset($matches[0])) {
         $innerContent = isset($matches[2]) ? $matches[2] : '';
         $attrs = AriMambotHelper::parseAttributes($matches[0]);
         return call_user_func($callback, $attrs, $innerContent);
     }
     return '';
 }