Exemplo n.º 1
0
 public function indexAction()
 {
     $this->_helper->viewRenderer->setNoRender(true);
     Zend_Layout::getMvcInstance()->disableLayout();
     $conf = new Z_Config('robots.txt');
     echo $conf->getValue();
 }
Exemplo n.º 2
0
 /**
  * @return Zend_Db_Table_Row
  */
 protected function _getErrorRow()
 {
     $row = self::$_model->fetchRow(array('sid=?' => 'error'));
     if (!$row) {
         $configError = new Z_Config('error_text');
         $errtext = $configError->getValue();
         $row = self::$_model->createRow(array('sid' => 'error', 'title' => 'Ошибка', 'text' => $errtext ? $errtext : 'Страница не найдена'));
     }
     return $row;
 }
Exemplo n.º 3
0
 public function z_config($sid)
 {
     return Z_Config::val($sid);
 }