move code up one directory
[atutor.git] / mods / _core / themes / theme_install_step_1.php
1 <?php
2 /************************************************************************/
3 /* ATutor                                                               */
4 /************************************************************************/
5 /* Copyright (c) 2002-2010                                              */
6 /* Inclusive Design Institute                                           */
7 /* http://atutor.ca                                                     */
8 /*                                                                      */
9 /* This program is free software. You can redistribute it and/or        */
10 /* modify it under the terms of the GNU General Public License          */
11 /* as published by the Free Software Foundation.                        */
12 /************************************************************************/
13 // $Id: 
14
15 define('AT_INCLUDE_PATH', '../../../include/');
16 require(AT_INCLUDE_PATH.'vitals.inc.php');
17 admin_authenticate(AT_ADMIN_PRIV_ADMIN);
18
19 $theme_folder = '../../../themes/';
20
21 if (isset($_GET["theme"])) $theme = $_GET["theme"];
22 else if (isset($_POST["theme"])) $theme = $_POST["theme"];
23
24 if (isset($_GET["title"])) $title = $_GET["title"];
25 else if (isset($_POST["title"])) $title = $_POST["title"];
26
27 if (isset($_POST['submit_no'])) {
28         $msg->addFeedback('CANCELLED');
29         header('Location: '.AT_BASE_HREF.'mods/_core/themes/install_themes.php');
30         exit;
31
32 else if (is_writable($theme_folder) || (is_writable($theme_folder) && isset($_POST['submit_yes']))) 
33 {
34         header('Location: '.AT_BASE_HREF.'mods/_core/themes/theme_install_step_2.php?theme='.$theme.SEP.'permission_granted='.$_POST["permission_granted"].SEP.'title='.$title);
35         exit;
36 }
37
38 if (!is_writable($theme_folder))
39 {
40         unset($hidden_vars);
41         $hidden_vars['theme'] = $theme;
42         $hidden_vars['title'] = $title;
43         $hidden_vars['permission_granted'] = 1;
44
45         require(AT_INCLUDE_PATH.'header.inc.php'); 
46         
47         $msg->addConfirm(array('GRANT_WRITE_PERMISSION', realpath($theme_folder)), $hidden_vars, _AT("continue"), _AT("cancel"));
48         $msg->printConfirm();
49         
50         require(AT_INCLUDE_PATH.'footer.inc.php'); 
51 }
52
53 ?>