Ejemplo n.º 1
0
 /**
  * Class constructor
  *
  * @param string $id
  * @param string $name
  * @param string $label
  * @param array $config
  */
 public function __construct($id = NULL, $name = '', $label = NULL, $config = array())
 {
     parent::__construct($id, $name, $label, $config);
     $this->_type = 'textfield';
     $this->_totf = 'text';
 }
Ejemplo n.º 2
0
 /**
  * Class constructor
  *
  * @param string $id
  * @param string $name
  * @param string $label
  * @param array $config
  */
 public function __construct($id = NULL, $name = '', $label = NULL, $config = array())
 {
     parent::__construct($id, $name, $label, $config);
     $this->_type = 'upload';
 }
Ejemplo n.º 3
0
 /**
  * Class constructor
  *
  * @param string $id
  * @param string $name
  * @param string $label
  * @param array $config
  */
 public function __construct($id = NULL, $name = '', $label = NULL, $config = array())
 {
     throw new One_Exception_NotImplemented('Child widget is not yet implemented');
     parent::__construct($id, $name, $label, $config);
     $this->_type = 'child';
 }