示例#1
0
 public function reset()
 {
     parent::reset();
     $this->_query = new Ajde_Query();
     $this->_filters = array();
     $this->_filterValues = array();
     $this->_sqlInitialized = false;
 }
示例#2
0
 public function reset()
 {
     parent::reset();
     $this->_query = new Ajde_Query();
     $this->_filters = [];
     $this->_filterValues = [];
     $this->_items = null;
     $this->_position = 0;
     $this->_queryCount = null;
     $this->_sqlInitialized = false;
 }
示例#3
0
文件: Paginator.php 项目: nabble/ajde
 public function reset()
 {
     parent::reset();
     $this->_items = null;
     $this->_position = 0;
 }
示例#4
0
文件: Model.php 项目: nabble/ajde
 public function reset()
 {
     $this->_metaValues = [];
     parent::reset();
 }