From 459313e56b0653e4709694a7e86afc11be514097 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Tue, 9 Oct 2012 14:01:58 +0200 Subject: add dummy module --- sqlbox/locallib.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sqlbox/locallib.php (limited to 'sqlbox/locallib.php') diff --git a/sqlbox/locallib.php b/sqlbox/locallib.php new file mode 100644 index 0000000..62a5f5e --- /dev/null +++ b/sqlbox/locallib.php @@ -0,0 +1,40 @@ +. + +/** + * Internal library of functions for module newmodule + * + * All the newmodule specific functions, needed to implement the module + * logic, should go here. Never include this file from your lib.php! + * + * @package mod + * @subpackage newmodule + * @copyright 2011 Your Name + * @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 newmodule_do_something_useful(array $things) { +// return new stdClass(); +//} -- cgit