public function __construct($id = null, $vorname = null, $name = null, $email = null) { parent::__construct($id); $this->vorname = $vorname; $this->name = $name; $this->email = $email; }
public function __construct($id = null, $name = null) { parent::__construct($id); $this->addNoSet('elemente'); $this->name = $name; $this->elemente = array(); }
public function __construct($id = null, $name = null, $schule = null, $altersgruppe = null) { parent::__construct($id); $this->name = $name; $this->schule = $schule; $this->altersgruppe = $altersgruppe; }
public function __construct($id = null, $label = null, $typ = null, $required = false, $placeholder = null) { parent::__construct($id); $this->addConversion('required', 'bool'); $this->label = $label; $this->typ = $typ; $this->required = (bool) $required; $this->placeholder = $placeholder; }
public function __construct($id = null, $name = null, $datum = null, Datumsbereich $aktiv = null, $ort = null, $informieren = null, $formularId = null) { parent::__construct($id); $this->addClassRestriction('aktiv', 'Datumsbereich'); $this->name = $name; $this->datum = $datum; $this->aktiv = $aktiv; $this->ort = $ort; $this->informieren = $informieren; $this->formularId = $formularId; }
public function __construct($id = null, $email = null) { parent::__construct($id); $this->email = $email; }
public function __construct($id = null, $person = null) { parent::__construct($id); $this->person = $person; }