admin.class.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. namespace Shibboleth;
  3. require_once __DIR__.'/scaffold/admin.class.php';
  4. /**
  5. * A Chamilo admin. Model for the Admin table.
  6. *
  7. * Should be moved to the core. It only exists because it is not available through
  8. * the API.
  9. *
  10. * The _Admin objet is generated by the scaffolder. Admin inherits from it to allow
  11. * modifications without touching the generated file. Don't modify _Admin as
  12. * it may change in the future. Instead add modifications to this class.
  13. *
  14. * @license see /license.txt
  15. * @author Laurent Opprecht <laurent@opprecht.info>, Nicolas Rod for the University of Geneva
  16. */
  17. class Admin extends _Admin
  18. {
  19. }
  20. /**
  21. * Store for Admin objects. Interact with the database. Allows to save and retrieve
  22. * admin objects.
  23. *
  24. * Should be moved to the core. It only exists because it is not available through
  25. * the API.
  26. *
  27. * The _AdminStore objet is generated by the scaffolder. This class inherits from it to allow
  28. * modifications without touching the generated file. Don't modify the _ object as
  29. * it may change in the future. Instead add modifications to this class.
  30. *
  31. * @copyright (c) 2012 University of Geneva
  32. * @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
  33. * @author Laurent Opprecht <laurent@opprecht.info>
  34. */
  35. class AdminStore extends _AdminStore
  36. {
  37. }