Beispiel #1
0
 private function __construct()
 {
     try {
         $this->ins_driver = Model_Driver::get_instance();
     } catch (DbException $e) {
         exit;
     }
 }
Beispiel #2
0
 public function __construct($page, $table_name, $page_count, $max_pages_list)
 {
     $this->page = $page;
     $this->table_name = $table_name;
     $this->page_count = $page_count;
     $this->max_pages_list = $max_pages_list;
     $this->db = Model_Driver::get_instance();
 }
Beispiel #3
0
 public function __construct()
 {
     try {
         $this->ins_driver = Model_Driver::get_instance();
         //            throw new DBException();
     } catch (DBException $e) {
         exit;
     }
 }
Beispiel #4
0
 public function __construct($page, $tablename, $where = array(), $order = '', $napr = '', $post_number, $number_link, $operand = "=", $match = array())
 {
     $this->page = $page;
     $this->tablename = $tablename;
     $this->where = $where;
     $this->order = $order;
     $this->napr = $napr;
     $this->post_number = $post_number;
     $this->number_link = $number_link;
     $this->operand = $operand;
     $this->match = $match;
     $this->db = Model_Driver::get_instance();
 }
Beispiel #5
0
 private function __construct()
 {
     $this->ins_driver = Model_Driver::get_instance();
 }
Beispiel #6
0
 private function __construct()
 {
     $this->ins_driver_user = Model_Driver::get_instance();
     $this->td = mcrypt_module_open($this->cyfer, '', $this->mode, '');
 }