Example #1
0
 function Article(&$parent)
 {
     Widget::Widget($parent);
     $this->add_param('page');
     $this->prepare();
 }
Example #2
0
 /**
  * Constructor
  *
  * @param string template name to get from $AdminUI
  * @param string prefix to differentiate page/order/filter params
  */
 function Table($ui_template = NULL, $param_prefix = '')
 {
     parent::Widget($ui_template);
     $this->param_prefix = $param_prefix;
     $this->no_results_text = T_('No results.');
 }
 function Text($name, $label, $size = "20", $mandatory = "off", $maxlength = "")
 {
     Widget::Widget($name, $label, $mandatory);
     $this->size = $size;
     $this->maxlength = $maxlength;
 }
Example #4
0
 /**
  * Constructor
  *
  * @param string template name to get from $AdminUI
  */
 function Table($ui_template = NULL)
 {
     parent::Widget($ui_template);
     $this->no_results_text = T_('No results.');
 }