Exemplo n.º 1
0
 /**
  * Adds the name input field
  */
 private function AddNameField()
 {
     $name = 'Name';
     $this->AddField(Input::Text($name, $this->group->GetName()));
     $this->SetRequired($name);
     $this->AddValidator($name, DatabaseCount::UniqueField($this->group, $name));
 }