Esempio n. 1
0
 /**
  * @param string $name
  * @param null $text
  * @return CheckboxList
  */
 public function checkboxList($name, $text = null)
 {
     $checkbox = new CheckboxList();
     $checkbox->setName($name);
     $checkbox->setText($text);
     $this->addElement($checkbox);
     return $checkbox;
 }