Author: Anton Shevchuk
Inheritance: extends Bluz\Db\Table
示例#1
0
文件: Crud.php 项目: dezvell/mm.local
 /**
  * Return table instance for manipulation
  *
  * @return Table
  */
 public function getTable()
 {
     if (!$this->table) {
         /**
          * @var Table $tableClass
          */
         $table = Table::getInstance();
         $this->setTable($table);
     }
     return $this->table;
 }
示例#2
0
文件: Row.php 项目: dezvell/mm.local
 /**
  * Return table instance for manipulation
  *
  * @return Table
  */
 public function getTable()
 {
     return Table::getInstance();
 }