コード例 #1
0
ファイル: Article.admin.php プロジェクト: dimadmb/100shub
 function Article(&$parent)
 {
     Widget::Widget($parent);
     $this->add_param('page');
     $this->prepare();
 }
コード例 #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.');
 }
コード例 #3
0
 function Text($name, $label, $size = "20", $mandatory = "off", $maxlength = "")
 {
     Widget::Widget($name, $label, $mandatory);
     $this->size = $size;
     $this->maxlength = $maxlength;
 }
コード例 #4
0
ファイル: _uiwidget.class.php プロジェクト: LFSF/oras
 /**
  * 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.');
 }