コード例 #1
0
ファイル: Rates.php プロジェクト: kalburgimanjunath/system
 public function getFilterFields()
 {
     $filter_fields = array('key' => array('key' => 'key', 'db_key' => 'key', 'input_type' => 'text', 'comparison' => 'contains', 'display' => 'Key', 'default' => '', 'case_type' => 'upper'), 'prefix' => array('key' => 'prefix', 'db_key' => 'params.prefix', 'input_type' => 'text', 'comparison' => 'contains', 'display' => 'Prefix', 'default' => ''), 'showprefix' => array('key' => 'showprefix', 'db_key' => 'nofilter', 'input_type' => 'boolean', 'display' => 'Show prefix', 'default' => $this->showprefix ? 'on' : ''));
     return array_merge($filter_fields, parent::getFilterFields());
 }