Пример #1
0
 public function __construct($name, $label = '', $desc = '', $val = '', $help = '')
 {
     parent::__construct($name, $label, $desc, $val, $help);
     $this->ver = 1.0;
     $this->basic = true;
     $this->ftype = 'textarea';
     $this->flabel = 'Text Area';
 }
Пример #2
0
 public function __construct($name, $label = '', $desc = '', $val = '', $help = '')
 {
     parent::__construct($name, $label, $desc, $val, $help);
     $this->ver = 1.0;
     $this->basic = true;
     $this->ftype = 'combobox';
     $this->flabel = 'Combo Box';
     $this->value = $val;
 }
Пример #3
0
 public function __construct($name, $label = '', $desc = '', $val = '', $help = '')
 {
     parent::__construct($name, $label, $desc, $val, $help);
     $this->ver = 1.0;
     $this->basic = false;
     $this->ftype = 'gallery';
     $this->flabel = 'Gallery';
     $this->help = 'width,height';
 }
Пример #4
0
 public function __construct($name, $label = '', $desc = '', $val = '', $help = '')
 {
     parent::__construct($name, $label, $desc, $val, $help);
     $this->ver = 1.0;
     $this->basic = true;
     $this->ftype = 'radiobutton';
     $this->flabel = 'Radio Button';
     $this->value = $val;
 }