1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ DbD+d11pce1LnvcthMF6w3zJUcR0Zr/YRgzoMUWOl/M=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.0
- */
- namespace Ppb\Db\Table;
- use Cube\Db\Table\AbstractTable;
- class Settings extends AbstractTable
- {
- /**
- *
- * table name
- *
- * @var string
- */
- protected $_name = 'settings';
- /**
- *
- * primary key
- *
- * @var string
- */
- protected $_primary = 'id';
- }
|