123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ +Qdl7nlwciSgX4WCW7NZ8wiXi4vty+b+rTavWG+E63Y=
- *
- * @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
- */
- /**
- * content pages table
- */
- namespace Ppb\Db\Table;
- use Cube\Db\Table\AbstractTable;
- class ContentPages extends AbstractTable
- {
- /**
- *
- * table name
- *
- * @var string
- */
- protected $_name = 'content_pages';
- /**
- *
- * primary key
- *
- * @var string
- */
- protected $_primary = 'id';
- /**
- *
- * reference map
- *
- * @var array
- */
- protected $_referenceMap = array(
- 'Section' => array(
- self::COLUMNS => 'section_id',
- self::REF_TABLE_CLASS => '\Ppb\Db\Table\ContentSections',
- self::REF_COLUMNS => 'id',
- ),
- );
- }
|