22 lines
509 B
PHP
22 lines
509 B
PHP
|
<?php
|
||
|
class Admin_ReviewController extends Zend_Controller_Action
|
||
|
{
|
||
|
function preDispatch()
|
||
|
{
|
||
|
$this->db=Zend_Registry::get('db');
|
||
|
$this->view->config = Zend_Registry::get('config');
|
||
|
$this->messenger=$this->_helper->getHelper('FlashMessenger');
|
||
|
$this->view->messages = $this->messenger->getMessages();
|
||
|
}
|
||
|
function postDispatch()
|
||
|
{
|
||
|
$this->view->messages = $this->messenger->getMessages();
|
||
|
}
|
||
|
function indexAction()
|
||
|
{
|
||
|
|
||
|
}//indexAction
|
||
|
|
||
|
}
|
||
|
|