ActiveDirectoryGroup.class.php 441 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Define a user rank for a given group.
  4. * @author valentin morreel
  5. * @category Core
  6. * @license copyright
  7. */
  8. class ActiveDirectoryGroup extends Entity
  9. {
  10. public $id,$adgroup,$rank,$firm;
  11. protected $TABLE_NAME = 'activedirectory_group';
  12. public $links = array(
  13. 'rank' => 'Rank',
  14. 'firm' => 'Firm'
  15. );
  16. protected $fields =
  17. array(
  18. 'id' => 'key',
  19. 'adgroup' => 'longstring',
  20. 'rank' => 'string',
  21. 'firm' => 'int'
  22. );
  23. }