UserFirmRank.class.php 676 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Define a user for a firm.
  4. * @author valentin carruesco
  5. * @category Core
  6. * @license MIT
  7. */
  8. class UserFirmRank extends Entity{
  9. public $id,$firm,$user,$rank;
  10. protected $TABLE_NAME = 'user_firm_rank';
  11. public $entityLabel = 'Rang d\'utilisateur pour un établissement';
  12. protected $fields = array(
  13. 'id' => array('label'=>'Identifiant', 'type'=>'key'),
  14. 'firm' => array('label'=>'Établissement', 'type'=>'firm','link'=>'class/Firm.class.php'),
  15. 'user' => array('label'=>'Utilisateur', 'type'=>'user'),
  16. 'rank' => array('label'=>'Rang', 'type'=>'rank','link'=>'class/Rank.class.php')
  17. );
  18. //Colonnes indexées
  19. public $indexes = array('firm', 'rank');
  20. }