Пример #1
0
 /**
  * Constructor
  *
  * @access public
  */
 public function HTML_QuickForm_Renderer_Default()
 {
     parent::__construct();
 }
Пример #2
0
 /**
  * Constructor
  *
  * @access public
  */
 public function __construct()
 {
     parent::__construct();
 }
Пример #3
0
 /**
  * Constructor
  *
  * @param collecthidden bool    true: collect all hidden elements
  * @access public
  */
 public function __construct($collecthidden = false)
 {
     parent::__construct();
     $this->_collectHidden = $collecthidden;
     $this->_obj = new QuickformForm();
 }
Пример #4
0
 /**
  * Constructor
  *
  * @param  bool    true: collect all hidden elements into string; false: process them as usual form elements
  * @param  bool    true: render an array of labels to many labels, $key 0 to 'label' and the oterh to "label_$key"
  * @access public
  */
 public function __construct($collectHidden = false, $staticLabels = false)
 {
     parent::__construct();
     $this->_collectHidden = $collectHidden;
     $this->_staticLabels = $staticLabels;
 }
Пример #5
0
 /**
  * Constructor
  */
 public function __construct($namespace = '')
 {
     $this->namespace = $namespace;
     $this->_group_template = $this->_default_group_template;
     parent::__construct();
 }
Пример #6
0
 /**
  * Constructor
  *
  * @param HTML_Template_ITX|HTML_Template_Sigma     Template object to use
  */
 function __construct(&$tpl)
 {
     parent::__construct();
     $this->_tpl =& $tpl;
     $this->_tpl->setCurrentBlock('qf_main_loop');
 }
Пример #7
0
 /**
  * Constructor
  *
  * @param HTML_Template_IT|HTML_Template_Sigma   Template object to use
  */
 function __construct(&$tpl)
 {
     parent::__construct();
     $this->_tpl =& $tpl;
 }