Beispiel #1
0
 /**
  * Initialize form.
  *
  * @return void
  */
 public function initialize()
 {
     parent::initialize();
     $this->setTitle('Edit Page')->setDescription('Edit this page.');
     $this->getFieldSet(self::FIELDSET_FOOTER)->clearElements()->addButton('save')->addButtonLink('cancel', 'Cancel', ['for' => 'admin-pages']);
     if ($this->_currentPageObject->type == Page::PAGE_TYPE_HOME) {
         $this->getFieldSet(self::FIELDSET_CONTENT)->remove('url')->remove('controller')->remove('roles[]');
     }
 }