Exemplo n.º 1
0
 public function indexAction()
 {
     $showForm = new Show_Form();
     $showForm->removeElement('description');
     $showForm->setAction($this->baseUrl . '/mod_slideshow/show/create');
     $submit = $showForm->getElement('submit');
     $submit->setLabel($this->view->getTranslation('Create Slideshow'));
     $this->view->form = $showForm;
     $mdlSlideshow = new Slideshow_Show();
     $this->view->slideshows = $mdlSlideshow->getShows();
 }