locallib.php 882 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * This is an implementation of Nasa TLX protocol provided by Laboratory of Informatics in Education (LInE) - IME - USP
  4. * LInE is coordinate by Leônidas de Oliveira Brandão (Computer Science Department at IME - USP).
  5. *
  6. * Internal library of functions for module nasatlx
  7. *
  8. * All the nasatlx specific functions, needed to implement the module
  9. * logic, should go here. Never include this file from your lib.php!
  10. *
  11. * @author Leônidas O. Brandão
  12. * @version v 0.1 2019/03/04
  13. * @package mod_nasatlx
  14. * @copyright 2014 LInE - http://line.ime.usp.br
  15. * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  16. */
  17. defined('MOODLE_INTERNAL') || die();
  18. /**
  19. * Does something really useful with the passed things
  20. *
  21. * @param array $things
  22. * @return object
  23. */
  24. //function nasatlx_do_something_useful(array $things) {
  25. // return new stdClass();
  26. //}