public.php 777 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. *
  4. * @license see /license.txt
  5. * @author Laurent Opprecht <laurent@opprecht.info>, Nicolas Rod for the University of Geneva
  6. */
  7. echo '<?php';
  8. ?>
  9. namespace Shibboleth;
  10. /**
  11. *
  12. * Model for table <?php echo $table_name ?>
  13. *
  14. * @copyright (c) 2012 University of Geneva
  15. * @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
  16. * @author Laurent Opprecht <laurent@opprecht.info>
  17. */
  18. class <?php echo $class_name ?>
  19. {
  20. }
  21. /**
  22. * Store for <?php echo $class_name ?> objects. Interact with the database.
  23. *
  24. * @copyright (c) 2012 University of Geneva
  25. * @license GNU General Public License - http://www.gnu.org/copyleft/gpl.html
  26. * @author Laurent Opprecht <laurent@opprecht.info>
  27. */
  28. class <?php echo $class_name ?>Store extends Store
  29. {
  30. }