changed git call from https to git readonly
[atutor.git] / mods / elluminate / module.php
1 <?php\r
2 /*******\r
3  * doesn't allow this file to be loaded with a browser.\r
4  */\r
5 if (!defined('AT_INCLUDE_PATH')) { exit; }\r
6 \r
7 /******\r
8  * this file must only be included within a Module obj\r
9  */\r
10 if (!isset($this) || (isset($this) && (strtolower(get_class($this)) != 'module'))) { exit(__FILE__ . ' is not a Module'); }\r
11 \r
12 /*******\r
13  * assign the instructor and admin privileges to the constants.\r
14  */\r
15 define('AT_PRIV_ELLUMINATE',       $this->getPrivilege());\r
16 define('AT_ADMIN_PRIV_ELLUMINATE', $this->getAdminPrivilege());\r
17 \r
18 /*******\r
19  * create a side menu box/stack.\r
20  */\r
21 $this->_stacks['elluminate'] = array('title_var'=>'elluminate', 'file'=>AT_INCLUDE_PATH.'../mods/elluminate/side_menu.inc.php');\r
22 // ** possible alternative: **\r
23 // $this->addStack('elluminate', array('title_var' => 'elluminate', 'file' => './side_menu.inc.php');\r
24 \r
25 /*******\r
26  * if this module is to be made available to students on the Home or Main Navigation.\r
27  */\r
28 $_student_tool = 'mods/elluminate/index.php';\r
29 // ** possible alternative: **\r
30 // $this->addTool('./index.php');\r
31 \r
32 /*******\r
33  * add the admin pages when needed.\r
34  */\r
35 if (admin_authenticate(AT_ADMIN_PRIV_ELLUMINATE, TRUE) || admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {\r
36         $this->_pages[AT_NAV_ADMIN] = array('mods/elluminate/elluminate.php');\r
37         $this->_pages['mods/elluminate/elluminate.php']['title_var'] = 'elluminate';\r
38         $this->_pages['mods/elluminate/elluminate.php']['parent']    = AT_NAV_ADMIN;\r
39 }\r
40 \r
41 /*******\r
42  * student page.\r
43  */\r
44 $this->_pages['mods/elluminate/index.php']['title_var'] = 'elluminate';\r
45 $this->_pages['mods/elluminate/index.php']['img']       = 'mods/elluminate/elluminate_logo.gif';\r
46 \r
47 \r
48 ?>