예제 #1
0
 public function get_params()
 {
     $params = parent::get_params();
     if (isset($this->filename)) {
         $params['filename'] = $this->filename;
     }
     return $params;
 }
예제 #2
0
 protected function get_params()
 {
     $params = parent::get_params();
     $this->_get_param($params, 'db_params');
     $this->_get_param($params, 'records_order_by');
     $this->_get_param($params, 'records_limit');
     $this->_get_param($params, 'records_offset');
     $this->_get_param($params, 'portion_limit');
     return $params;
 }
예제 #3
0
 public function get_params()
 {
     $params = parent::get_params();
     if (isset($this->path)) {
         $params['path'] = $this->path;
     }
     if (isset($this->mindepth)) {
         $params['mindepth'] = $this->mindepth;
     }
     if (isset($this->maxdepth)) {
         $params['maxdepth'] = $this->maxdepth;
     }
     return $params;
 }
예제 #4
0
 protected function get_params()
 {
     return array_merge(parent::get_params(), $this->get_query_params());
 }