예제 #1
0
파일: date.php 프로젝트: Val-Git/icms2
 public function getDefaultVarType($is_filter = false)
 {
     if ($is_filter && $this->getOption('filter_range') || $this->getOption('show_time')) {
         $this->var_type = 'array';
     }
     return parent::getDefaultVarType($is_filter);
 }
예제 #2
0
파일: list.php 프로젝트: Val-Git/icms2
 public function getDefaultVarType($is_filter = false)
 {
     if ($is_filter && $this->getOption('filter_multiple')) {
         $this->var_type = 'array';
     }
     if ($this->getProperty('is_multiple')) {
         $this->var_type = 'array';
     }
     return parent::getDefaultVarType($is_filter);
 }