123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ 7TpWuUNndfHVwBDz1rUqzAoDsI0XT6AA/3NqEqrjIMY=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2017 Online Ventures Software & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.9 [rev.7.9.01]
- */
- /**
- * listings table
- */
- namespace Ppb\Db\Table;
- use Cube\Db\Table\AbstractTable;
- class Listings extends AbstractTable
- {
- /**
- *
- * table name
- *
- * @var string
- */
- protected $_name = 'listings';
- /**
- *
- * primary key
- *
- * @var string
- */
- protected $_primary = 'id';
- /**
- *
- * class name for row
- *
- * @var string
- */
- protected $_rowClass = '\Ppb\Db\Table\Row\Listing';
- /**
- * class name for rowset
- *
- * @var string
- */
- protected $_rowsetClass = '\Ppb\Db\Table\Rowset\Listings';
- /**
- *
- * cacheable queries
- *
- * @var bool
- */
- protected $_cacheableQueries = true;
- /**
- *
- * reference map
- *
- * @var array
- */
- protected $_referenceMap = array(
- 'Owner' => array(
- self::COLUMNS => 'user_id',
- self::REF_TABLE_CLASS => '\Ppb\Db\Table\Users',
- self::REF_COLUMNS => 'id',
- ),
- 'Category' => array(
- self::COLUMNS => 'category_id',
- self::REF_TABLE_CLASS => '\Ppb\Db\Table\Categories',
- self::REF_COLUMNS => 'id',
- ),
- 'AddlCategory' => array(
- self::COLUMNS => 'addl_category_id',
- self::REF_TABLE_CLASS => '\Ppb\Db\Table\Categories',
- self::REF_COLUMNS => 'id',
- ),
- 'Country' => array(
- self::COLUMNS => 'country',
- self::REF_TABLE_CLASS => '\Ppb\Db\Table\Locations',
- self::REF_COLUMNS => 'id',
- ),
- );
- /**
- *
- * dependent tables
- *
- * @var array
- */
- protected $_dependentTables = array(
- '\Ppb\Db\Table\Accounting',
- '\Ppb\Db\Table\Bids',
- '\Ppb\Db\Table\ListingsMedia',
- '\Ppb\Db\Table\ListingsWatch',
- '\Ppb\Db\Table\Offers',
- '\Ppb\Db\Table\SalesListings',
- '\Ppb\Db\Table\Messaging',
- '\Ppb\Db\Table\RecentlyViewedListings',
- );
- }
|