Example #1
0
 public function __construct($action = '', $method = View_Form::POST, $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setAction($action);
     $this->setMethod($method);
     $this->elements = array();
 }
 public function __construct($name, $multiple = false, $size = 1, $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setName($name);
     $this->setMultiple($multiple);
     $this->setSize($size);
 }
 public function __construct($type = View_Button::BUTTON, $name = '', $value = '', $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setType($type);
     $this->setName($name);
     $this->setValue($value);
 }
Example #4
0
 public function __construct($caption = 'null', $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setCaption($caption);
     $this->bodyItems = array();
     $this->headerItems = array();
     $this->footerItems = array();
 }
Example #5
0
 public function __construct($class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->elements = array();
 }
Example #6
0
 public function __construct($title, $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setTitle($title);
     $this->items = array();
 }
 public function __construct($value, $class = 'null', $id = 'null')
 {
     parent::__construct($id, $class);
     $this->setValue($value);
 }