AdFirmRank.class.php 927 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Define a Liaison groupe rang
  4. * @author Jean CARRUESCO
  5. * @category Plugin
  6. * @license MIT
  7. */
  8. class AdFirmRank extends Entity{
  9. public $id;
  10. public $firm; //Établissement (Etablissement)
  11. public $rank; //Rang ERP (Rang)
  12. public $group; //Groupe AD (Liste classique)
  13. public $server; //Serveur (Nombre Entier)
  14. protected $TABLE_NAME = 'activedirectory_ad_firm_rank';
  15. public $entityLabel = 'Liaison groupe rang';
  16. public $fields = array(
  17. 'id' => array('type'=>'key', 'label' => 'Identifiant'),
  18. 'firm' => array('type'=>'firm','label' => 'Établissement','link'=>'class/Firm.class.php'),
  19. 'rank' => array('type'=>'rank','label' => 'Rang ERP','link'=>'class/Rank.class.php'),
  20. 'group' => array('type'=>'list','label' => 'Groupe AD'),
  21. 'server' => array('type'=>'integer','label' => 'Serveur','link'=>'plugin/activedirectory/AdServer.class.php')
  22. );
  23. //Colonnes indexées
  24. public $indexes = array();
  25. }
  26. ?>