Пример #1
0
 public function __construct($role, $options = null)
 {
     $this->__role = $role;
     parent::__construct($options);
 }
Пример #2
0
 /**
  * Konstruiert das Formular.
  * 
  * Der Typ kommt vom übergeordneten Formular und muss daher auch nicht beim POST mit übermittelt werden.
  * 
  * @param string $type Typ des Schlagwortes
  * @param string $language Sprache für das Schlagwort, wenn nicht editierbar
  * @param array $options Weitere Optionen (für Zend_Form_SubForm)
  */
 public function __construct($type, $language = null, $options = null)
 {
     $this->_subjectType = $type;
     $this->_language = $language;
     parent::__construct($options);
 }