/**
  * the constructor
  *
  */
 private function __construct()
 {
     $this->_tablename = SQL_TABLE_PREFIX . $this->_tablename;
     $this->_table = new Tinebase_Db_Table(array('name' => $this->_tablename));
     $this->_table->setRowClass('Tinebase_Model_ModificationLog');
     $this->_backend = new Tinebase_Backend_Sql(array('modelName' => 'Tinebase_Model_ModificationLog', 'tableName' => 'timemachine_modlog'));
 }
Beispiel #2
0
 /**
  * the constructor
  *
  */
 private function __construct()
 {
     $this->_tablename = SQL_TABLE_PREFIX . $this->_tablename;
     $this->_table = new Tinebase_Db_Table(array('name' => $this->_tablename));
     $this->_table->setRowClass('Tinebase_Model_ModificationLog');
 }