Example #1
0
 function indexAction()
 {
     $this->metas(array('DC.Title' => 'Citations'));
     $this->view->citations = $table = new Citation();
     $s = $table->select()->order('date DESC');
     $this->view->model = new Strass_Pages_Model_Rowset($s, 10, $this->_getParam('page'));
     $this->actions->append("Enregistrer un citation", array('action' => 'enregistrer'));
 }