Exemple #1
0
 function get($vars = array())
 {
     if (!$this->isReadable()) {
         return '';
     }
     cms::$ActivePage = $this;
     if (isset(cms::$RenderPath[$this->id])) {
         return $this->edit ? '<div class="qgCmsCont -pid' . $this . '  -m-' . str_replace('.', '-', $this->vs['module']) . '">' . L('Rekursion! Inhalt ###1### wollte reqursiv nochmals dargestellt werden.', $this->id) . '</div>' : '';
     }
     cms::$RenderPath[$this->id] = true;
     $s = $this->getPrepared($vars);
     array_pop(cms::$RenderPath);
     return $s;
 }