Ejemplo n.º 1
0
 function __construct($limit = false, $sorting_field = false, $sorting_order = false)
 {
     parent::__construct('guest_alerts');
     $this->limit = $limit;
     $this->sorting_field = $sorting_field;
     $this->sorting_order = $sorting_order;
 }
Ejemplo n.º 2
0
 function SJB_InvoiceInfoSearcher($limit = false, $sorting_field = false, $sorting_order = false, $inner_join = false)
 {
     parent::__construct('invoices');
     $this->limit = $limit;
     $this->sorting_field = $sorting_field;
     $this->sorting_order = $sorting_order;
     $this->inner_join = $inner_join;
 }
Ejemplo n.º 3
0
 function __construct($limit = false, $sorting_field = false, $sorting_order = false, $inner_join = false, $limitByPHP)
 {
     parent::__construct('users');
     $this->limit = $limit;
     $this->sorting_field = $sorting_field;
     $this->sorting_order = $sorting_order;
     $this->inner_join = $inner_join;
     $this->limitByPHP = $limitByPHP;
     $this->searchSqlTranslator = new SJB_UserSearchSQLTranslator($this->table_prefix);
 }
Ejemplo n.º 4
0
 function SJB_EmailLogInfoSearcher($limit = false, $sorting_field = false, $sorting_order = false)
 {
     parent::__construct('email_log');
     $this->limit = $limit;
     $this->sorting_field = $sorting_field;
     $this->sorting_order = $sorting_order;
 }
Ejemplo n.º 5
0
 function SJB_PaymentLogInfoSearcher($current_page, $items_per_page, $sorting_field = false, $sorting_order = false)
 {
     parent::__construct('payment_log');
     $this->current_page = $current_page;
     $this->items_per_page = $items_per_page;
     $this->sorting_field = $sorting_field;
     $this->sorting_order = $sorting_order;
 }