예제 #1
0
 function get_field_def()
 {
     $def = parent::get_field_def();
     $def['type'] = 'id';
     $def['studio'] = 'visible';
     $def['function'] = array('name' => 'getCurrencyDropDown', 'returns' => 'html');
     return $def;
 }
예제 #2
0
 public function get_field_def()
 {
     $def = parent::get_field_def();
     $def['type'] = $this->type;
     $def['vname'] = 'LBL_CURRENCY_ID';
     $def['dbType'] = 'id';
     $def['studio'] = 'visible';
     $def['function'] = 'getCurrencies';
     $def['function_bean'] = 'Currencies';
     return $def;
 }