move code up one directory
[atutor.git] / mods / _core / backups / edit.php
1 <?php\r
2 /****************************************************************************/\r
3 /* ATutor                                                                                                                                       */\r
4 /****************************************************************************/\r
5 /* Copyright (c) 2002-2010                                                  */\r
6 /* Inclusive Design Institute                                               */\r
7 /* http://atutor.ca                                                                                                                     */\r
8 /*                                                                                                                                                      */\r
9 /* This program is free software. You can redistribute it and/or                        */\r
10 /* modify it under the terms of the GNU General Public License                          */\r
11 /* as published by the Free Software Foundation.                                                        */\r
12 /****************************************************************************/\r
13 // $Id$\r
14 \r
15 define('AT_INCLUDE_PATH', '../../../include/');\r
16 require(AT_INCLUDE_PATH.'vitals.inc.php');\r
17 authenticate(AT_PRIV_ADMIN); \r
18 \r
19 require(AT_INCLUDE_PATH.'../mods/_core/backups/classes/Backup.class.php');\r
20 \r
21 if (isset($_POST['cancel']) || !isset($_REQUEST['backup_id'])) {\r
22         $msg->addFeedback('CANCELLED');\r
23         header('Location: index.php');\r
24         exit;\r
25 }\r
26 \r
27 $Backup = new Backup($db, $_SESSION['course_id']);\r
28 \r
29 if (isset($_POST['edit'])) {\r
30         $Backup->edit($_POST['backup_id'], $_POST['new_description']);\r
31         $msg->addFeedback('ACTION_COMPLETED_SUCCESSFULLY');\r
32         header('Location: index.php');\r
33         exit;\r
34\r
35 \r
36 require(AT_INCLUDE_PATH.'header.inc.php');\r
37 \r
38 $row = $Backup->getRow($_REQUEST['backup_id']);\r
39 //check for errors\r
40 $savant->assign('row', $row);\r
41 $savant->display('instructor/backups/edit.tmpl.php');\r
42 require (AT_INCLUDE_PATH.'footer.inc.php');  ?>