/**
  * Initializes and configures controller.
  * @throws Application_Exception
  */
 public function init()
 {
     $this->_enrichmentKeys = new Admin_Model_EnrichmentKeys();
     $this->setVerifyModelIdIsNumeric(false);
     $this->setShowActionEnabled(false);
     $this->setFormClass('Admin_Form_EnrichmentKey');
     parent::init();
 }
Пример #2
0
 /**
  * Modifiziert Formular für Indextabelle, so daß angepasstes ViewScript verwendet wird.
  * @return Application_Form_Model_Table
  */
 public function getIndexForm()
 {
     $form = parent::getIndexForm();
     $form->setViewScript('series/modeltable.phtml');
     return $form;
 }
Пример #3
0
 /**
  * Initialisiert den Controller.
  *
  * Setzt die Formularklasse fuer Lizenzen.
  */
 public function init()
 {
     $this->setFormClass('Admin_Form_Licence');
     parent::init();
 }
Пример #4
0
 public function init()
 {
     $this->setFormClass('Admin_Form_DnbInstitute');
     parent::init();
 }