9c0dd36b5af2f58630ba0b4260f5261dab550703
[atutor.git] / mods / pdf_converter / 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_PDF_CONVERTER',       $this->getPrivilege());\r
16 define('AT_ADMIN_PRIV_PDF_CONVERTER', $this->getAdminPrivilege());\r
17 \r
18 /*******\r
19  * create a side menu box/stack.\r
20  */\r
21 $this->_stacks['pdf_converter'] = array('title_var'=>'pdf_converter', 'file'=>'mods/pdf_converter/side_menu.inc.php');\r
22 \r
23 $this->_pages['mods/pdf_converter/index.php']['img']  = 'mods/pdf_converter/pdf_icon.jpg';\r
24 \r
25 \r
26 ?>