Reputation.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. /**
  3. *
  4. * PHP Pro Bid $Id$ /hUzA/d/lsDObXj/yDUpPZrTott3xGoV8tph/Uvm1Wo=
  5. *
  6. * @link http://www.phpprobid.com
  7. * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
  8. * @license http://www.phpprobid.com/license Commercial License
  9. *
  10. * @version 7.0
  11. */
  12. /**
  13. * reputation (feedback) table
  14. */
  15. namespace Ppb\Db\Table;
  16. use Cube\Db\Table\AbstractTable;
  17. class Reputation extends AbstractTable
  18. {
  19. /**
  20. *
  21. * table name
  22. *
  23. * @var string
  24. */
  25. protected $_name = 'reputation';
  26. /**
  27. *
  28. * primary key
  29. *
  30. * @var string
  31. */
  32. protected $_primary = 'id';
  33. /**
  34. *
  35. * class name for row
  36. *
  37. * @var string
  38. */
  39. protected $_rowClass = '\Ppb\Db\Table\Row\Reputation';
  40. /**
  41. * class name for rowset
  42. *
  43. * @var string
  44. */
  45. protected $_rowsetClass = '\Ppb\Db\Table\Rowset\Reputation';
  46. /**
  47. *
  48. * reference map
  49. *
  50. * @var array
  51. */
  52. protected $_referenceMap = array(
  53. 'User' => array(
  54. self::COLUMNS => 'user_id',
  55. self::REF_TABLE_CLASS => '\Ppb\Db\Table\Users',
  56. self::REF_COLUMNS => 'id',
  57. ),
  58. 'Poster' => array(
  59. self::COLUMNS => 'poster_id',
  60. self::REF_TABLE_CLASS => '\Ppb\Db\Table\Users',
  61. self::REF_COLUMNS => 'id',
  62. ),
  63. 'SaleListing' => array(
  64. self::COLUMNS => 'sale_listing_id',
  65. self::REF_TABLE_CLASS => '\Ppb\Db\Table\SalesListings',
  66. self::REF_COLUMNS => 'id',
  67. ),
  68. );
  69. }