remove old readme
[atutor.git] / docs / mods / _core / themes / module.php
1 <?php\r
2 if (!defined('AT_INCLUDE_PATH')) { exit; }\r
3 if (!isset($this) || (isset($this) && (strtolower(get_class($this)) != 'module'))) { exit(__FILE__ . ' is not a Module'); }\r
4 \r
5 define('AT_ADMIN_PRIV_THEMES', $this->getAdminPrivilege());\r
6 \r
7 if (admin_authenticate(AT_ADMIN_PRIV_THEMES, TRUE) || admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {\r
8         if (admin_authenticate(AT_ADMIN_PRIV_ADMIN, TRUE)) {\r
9                 $this->_pages['admin/config_edit.php']['children']      = array('mods/_core/themes/index.php');\r
10                 $this->_pages['mods/_core/themes/index.php']['parent'] = 'admin/config_edit.php';\r
11         } else {\r
12                 $this->_pages[AT_NAV_ADMIN] = array('mods/_core/themes/index.php');\r
13                 $this->_pages['mods/_core/themes/index.php']['parent'] = AT_NAV_ADMIN;\r
14         }\r
15 \r
16 \r
17         //admin\r
18         $this->_pages['mods/_core/themes/index.php']['title_var'] = 'themes';\r
19         $this->_pages['mods/_core/themes/index.php']['guide']     = 'admin/?p=themes.php';\r
20         $this->_pages['mods/_core/themes/index.php']['children']  = array('mods/_core/themes/install_themes.php');\r
21         $this->_pages['mods/_core/themes/install_themes.php']['guide']   = 'admin/?p=importing_themes.php';     \r
22 \r
23         $this->_pages['mods/_core/themes/delete.php']['title_var'] = 'delete';\r
24         $this->_pages['mods/_core/themes/delete.php']['parent']    = 'mods/_core/themes/index.php';\r
25 \r
26         $this->_pages['mods/_core/themes/install_themes.php']['title_var'] = 'install_themes';\r
27         $this->_pages['mods/_core/themes/install_themes.php']['parent'] = 'mods/_core/themes/index.php';\r
28 \r
29         $this->_pages['mods/_core/themes/theme_install_step_1.php']['title_var'] = 'details';\r
30         $this->_pages['mods/_core/themes/theme_install_step_1.php']['parent']    = 'mods/_core/themes/install_themes.php';\r
31 \r
32         $this->_pages['mods/_core/themes/theme_install_step_2.php']['title_var'] = 'details';\r
33         $this->_pages['mods/_core/themes/theme_install_step_2.php']['parent']    = 'mods/_core/themes/install_themes.php';\r
34 \r
35         $this->_pages['mods/_core/themes/theme_install_step_3.php']['title_var'] = 'details';\r
36         $this->_pages['mods/_core/themes/theme_install_step_3.php']['parent']    = 'mods/_core/themes/install_themes.php';\r
37 \r
38         $this->_pages['mods/_core/themes/version_history.php']['title_var'] = 'version_history';\r
39         $this->_pages['mods/_core/themes/version_history.php']['parent']    = 'mods/_core/themes/install_themes.php';\r
40 \r
41 }\r
42 ?>