ed40a602b673907c64f10eecd4d33c33c030c877
[atutor.git] / mods / userplane / module_install.php
1 <?php\r
2 /*******\r
3  * the line below safe-guards this file from being accessed directly from\r
4  * a web browser. It will only execute if required from within an ATutor script,\r
5  * in our case the Module::install() method.\r
6  */\r
7 if (!defined('AT_INCLUDE_PATH')) { exit; }\r
8 \r
9 \r
10 $_admin_privilege  = TRUE; // possible values: FALSE | TRUE\r
11 \r
12 \r
13 /******\r
14  * the following code checks if there are any errors (generated previously)\r
15  * then uses the SqlUtility to run any database queries it needs, ie. to create\r
16  * its own tables.\r
17  */\r
18 if (!$msg->containsErrors() && file_exists(dirname(__FILE__) . '/module.sql')) {\r
19         // deal with the SQL file:\r
20         require(AT_INCLUDE_PATH . 'classes/sqlutility.class.php');\r
21         $sqlUtility =& new SqlUtility();\r
22 \r
23         /*\r
24          * the SQL file could be stored anywhere, and named anything, "module.sql" is simply\r
25          * a convention we're using.\r
26          */\r
27         $sqlUtility->queryFromFile(dirname(__FILE__) . '/module.sql', TABLE_PREFIX);\r
28 }\r
29 \r
30 ?>