| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 | 
							- <?php
 
- /**
 
-  * 
 
-  * PHP Pro Bid $Id$ c8ZvSxz82PWKe8BtY+Gt/YF+Pk9yVMs1ZRCdXFMGSQA=
 
-  * 
 
-  * @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 sections table
 
-  */
 
- namespace Ppb\Db\Table;
 
- use Cube\Db\Table\AbstractTable;
 
- class ContentSections extends AbstractTable
 
- {
 
-     /**
 
-      *
 
-      * table name
 
-      * 
 
-      * @var string
 
-      */
 
-     protected $_name = 'content_sections';
 
-     /**
 
-      *
 
-      * primary key
 
-      * 
 
-      * @var string
 
-      */
 
-     protected $_primary = 'id';
 
-     /**
 
-      *
 
-      * class name for row
 
-      *
 
-      * @var string
 
-      */
 
-     protected $_rowClass = '\Ppb\Db\Table\Row\ContentSection';
 
-     /**
 
-      * class name for rowset
 
-      *
 
-      * @var string
 
-      */
 
-     protected $_rowsetClass = '\Ppb\Db\Table\Rowset\ContentSections';
 
-     /**
 
-      *
 
-      * reference map
 
-      * 
 
-      * @var array
 
-      */
 
-     protected $_referenceMap = array(
 
-         'Parent' => array(
 
-             self::COLUMNS => 'parent_id',
 
-             self::REF_TABLE_CLASS => '\Ppb\Db\Table\ContentSections',
 
-             self::REF_COLUMNS => 'id',
 
-         ),
 
-     );
 
-     /**
 
-      *
 
-      * dependent tables
 
-      * 
 
-      * @var array
 
-      */
 
-     protected $_dependentTables = array(
 
-         '\Ppb\Db\Table\ContentSections',
 
-         '\Ppb\Db\Table\ContentPages',
 
-     );
 
- }
 
 
  |