示例#1
0
 function search($VAR)
 {
     $type = "search";
     $this->method["{$type}"] = explode(",", $this->method["{$type}"]);
     $db = new CORE_database();
     $db->search($VAR, $this, $type);
 }
示例#2
0
 function search($VAR)
 {
     $this->construct();
     $type = "search";
     $this->method["{$type}"] = split(",", $this->method["{$type}"]);
     $db = new CORE_database();
     $db->search($VAR, $this, $type);
 }
 function user_search($VAR)
 {
     # Lock the user only for his billing_records:
     if (!SESS_LOGGED) {
         return false;
     }
     # Lock the account_id
     $VAR['account_billing_account_id'] = SESS_ACCOUNT;
     $this->construct();
     $type = "search";
     $this->method["{$type}"] = explode(",", $this->method["{$type}"]);
     $db = new CORE_database();
     $db->search($VAR, $this, $type);
 }
 function search($VAR)
 {
     $this->static_page_category_construct();
     $type = "search";
     $this->method["{$type}"] = explode(",", $this->method["{$type}"]);
     $db = new CORE_database();
     $db->search($VAR, $this, $type);
 }
示例#5
0
 /** USER SEARCH
  */
 function user_search($VAR)
 {
     if (!SESS_LOGGED) {
         return false;
     }
     $VAR['invoice_account_id'] = SESS_ACCOUNT;
     $this->invoice_construct();
     $type = "search";
     $this->method["{$type}"] = explode(",", $this->method["{$type}"]);
     $db = new CORE_database();
     $db->search($VAR, $this, $type);
 }