예제 #1
0
 public function reset()
 {
     parent::reset();
     $this->_query = new Ajde_Query();
     $this->_filters = array();
     $this->_filterValues = array();
     $this->_sqlInitialized = false;
 }
예제 #2
0
파일: Collection.php 프로젝트: nabble/ajde
 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();
 }