コード例 #1
0
ファイル: catalogs.class.php プロジェクト: Batit/CadaverAldea
 function _selectOr($fields, $filter)
 {
     $sentence = "";
     $sentence = Sentences::_getSentenceSelectOr($this->table, $fields, $filter);
     $this->register = $this->cnn->excecuteSelect($sentence);
     return $this->register;
 }
コード例 #2
0
ファイル: User.class.php プロジェクト: Batit/CadaverAldea
 function _select($fields, $filter)
 {
     $sentence = Sentences::_getSentenceSelectOr($this->table, $fields, $filter);
     $this->user = $this->cnn->excecuteSelect($sentence . " ORDER BY lastName");
     return $this->user;
 }