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