Example #1
0
 /**
  * Constructor
  */
 public function __construct($table = '')
 {
     if ($table !== '') {
         $this->_table = $table;
     }
     $this->_dbAdapter = Mnl_Db_Connection::getConnection();
 }
Example #2
0
 public static function setConnection($connection = NULL)
 {
     if (!self::$_db) {
         self::$_db = $connection;
     }
 }