be.inc.php 409 B

12345678910111213141516
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * include this file to have access to all backend classes
  5. * @author Bert Steppé
  6. * @package chamilo.gradebook
  7. */
  8. /**
  9. * Code
  10. */
  11. define ('LIMIT', 1000);
  12. require_once 'be/gradebookitem.class.php';
  13. require_once 'be/category.class.php';
  14. require_once 'be/evaluation.class.php';
  15. require_once 'be/result.class.php';
  16. require_once 'be/linkfactory.class.php';