locallib.php 597 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Internal library of functions for module nasatlx
  4. *
  5. * All the nasatlx specific functions, needed to implement the module
  6. * logic, should go here. Never include this file from your lib.php!
  7. *
  8. * @package mod_nasatlx
  9. * @copyright 2014 LInE - http://line.ime.usp.br
  10. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  11. */
  12. defined('MOODLE_INTERNAL') || die();
  13. /**
  14. * Does something really useful with the passed things
  15. *
  16. * @param array $things
  17. * @return object
  18. */
  19. //function nasatlx_do_something_useful(array $things) {
  20. // return new stdClass();
  21. //}