public $type;
public $tables = array();
+ # Objects
+ public $table;
+
# Web
public $dbs; // others databases keys
- public $table;
public $default_table;
+ public $limits = array('10','20','50','100','500','1000');
public $help_criterias = array(
' * or % for wildcar',
' ! to negate',
// Limit
$r .= '<span class="label">';
- $r .= '<label for="limit">Limit</label>'.html_select_array(array(
- '10','20','50','100','500','1000'
- ),array(
+ $r .= '<label for="limit">Limit</label>'.html_select_array($this->limits,array(
'html' => 'class="limit" name="limit" id="limit"',
'selected' => $this->p('limit'),
'prettyText' => true,