Ejemplo n.º 1
0
 /**
  * Create button element
  * @param string $type
  * @param string $title
  */
 public function newButton($type, $value)
 {
     $e = $this->buttons->newElement('ButtonInput', $type);
     $e->setValue($value);
     $e->setDefaultValue($value);
     $e->setType($type);
     return $e;
 }