Beispiel #1
0
 public function fetchArray()
 {
     if (isset($_SESSION['account_id'])) {
         return REST_Model::fetchArray(" WHERE account_id=" . $_SESSION['account_id'] . " ORDER by id");
     } else {
         return REST_Model::fetchArray();
     }
 }
Beispiel #2
0
 public function fetchArray()
 {
     if (isset($_SESSION['account_id'])) {
         return parent::fetchArray(" WHERE section='crawlerfilter' AND account_id='" . $_SESSION['account_id'] . "' ORDER by id");
     }
 }
Beispiel #3
0
 public function fetchArray()
 {
     if (isset($_SESSION['account_id'])) {
         return parent::fetchArray(" WHERE section='" . $this->sSection . "' AND account_id=" . $_SESSION['account_id'] . " ORDER by id");
     }
 }