removed mods directory from the ATutor codebase
[atutor.git] / mods / atalker / module.php
diff --git a/mods/atalker/module.php b/mods/atalker/module.php
deleted file mode 100644 (file)
index 11113af..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php\r
-/*******\r
- * doesn't allow this file to be loaded with a browser.\r
- */\r
-if (!defined('AT_INCLUDE_PATH')) { exit; }\r
-\r
-/******\r
- * this file must only be included within a Module obj\r
- */\r
-if (!isset($this) || (isset($this) && (strtolower(get_class($this)) != 'module'))) { exit(__FILE__ . ' is not a Module'); }\r
-\r
-/*******\r
- * assign the instructor and admin privileges to the constants.\r
- */\r
-define('AT_PRIV_ATALKER',       $this->getPrivilege());\r
-define('AT_ADMIN_PRIV_ATALKER', $this->getAdminPrivilege());\r
-\r
-/*******\r
- * if this module is to be made available to students on the Home or Main Navigation.\r
- */\r
-$_student_tool = 'mods/atalker/index.php';\r
-\r
-/*******\r
- * add the admin pages when needed.\r
- */\r
-if (admin_authenticate(AT_ADMIN_PRIV_HELLO_WORLD, TRUE) || admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {\r
-       $this->_pages[AT_NAV_ADMIN] = array('mods/atalker/admin/admin_index.php');\r
-       $this->_pages['mods/atalker/admin/admin_index.php']['parent']    = AT_NAV_ADMIN;\r
-       $this->_pages['mods/atalker/admin/admin_index.php']['title_var'] = 'atalker';\r
-}\r
-\r
-/*******\r
- * student  and instructor page.\r
- */\r
-$this->_pages['mods/atalker/index.php']['title_var'] = 'atalker';\r
-$this->_pages['mods/atalker/index.php']['img']       = 'mods/atalker/images/atalker.gif';\r
-\r
-\r
-/* Modified by Eura Ercolani: mimetype support - BEGIN */\r
-\r
-if(isset($_POST['mp3HiddenMimeType']))\r
-{\r
-       $_SESSION['mp3HiddenMimeType']=$_POST['mp3HiddenMimeType'];\r
-}\r
-/* Modified by Eura Ercolani: mimetype support - END */\r
-/* Modified by Eura Ercolani: introducing global variabiles - BEGIN */\r
-//ATutor root web folder\r
-$_ATutor_home_path = '/home/eura/public_html/ATutor/';\r
-\r
-\r
-/* Modified by Eura Ercolani: introducing global variables - END */\r
-\r
-?>
\ No newline at end of file