_table = 'common_smsgw'; $this->_pk = 'smsgwid'; parent::__construct(); } public function fetch_all_gw_order_id() { return DB::fetch_all("SELECT * FROM %t ORDER BY `order`, $this->_pk", array($this->_table)); } public function fetch_all_gw_avaliable() { return DB::fetch_all("SELECT * FROM %t WHERE available > %d ORDER BY `order`, $this->_pk", array($this->_table, 0)); } } ?>