/mods/_standard/file_storage/edit_folder.php
https://github.com/harriswong/ATutor · PHP · 86 lines · 59 code · 15 blank · 12 comment · 8 complexity · 61a5f302f7344461a3ebb99e8e55861c MD5 · raw file
- <?php
- /****************************************************************/
- /* ATutor */
- /****************************************************************/
- /* Copyright (c) 2002-2010 */
- /* Inclusive Design Institute */
- /* http://atutor.ca */
- /* */
- /* This program is free software. You can redistribute it and/or*/
- /* modify it under the terms of the GNU General Public License */
- /* as published by the Free Software Foundation. */
- /****************************************************************/
- // $Id$
-
- define('AT_INCLUDE_PATH', '../../../include/');
- require(AT_INCLUDE_PATH.'vitals.inc.php');
- require(AT_INCLUDE_PATH.'../mods/_standard/file_storage/file_storage.inc.php');
-
- $owner_type = abs($_REQUEST['ot']);
- $owner_id = abs($_REQUEST['oid']);
- $owner_arg_prefix = '?ot='.$owner_type.SEP.'oid='.$owner_id. SEP;
- if (!($owner_status = fs_authenticate($owner_type, $owner_id)) || !query_bit($owner_status, WORKSPACE_AUTH_WRITE)) {
- $msg->addError('ACCESS_DENIED');
- header('Location: '.url_rewrite('mods/_standard/file_storage/index.php', AT_PRETTY_URL_IS_HEADER));
- exit;
- }
-
- if (isset($_POST['cancel'])) {
- $msg->addFeedback('CANCELLED');
- header('Location: '.url_rewrite('mods/_standard/file_storage/index.php'.$owner_arg_prefix.'folder='.abs($_POST['parent_folder']), AT_PRETTY_URL_IS_HEADER));
- exit;
- } else if (isset($_POST['submit'])) {
- $_POST['id'] = abs($_POST['id']);
-
- if (!$_POST['name']) {
- $msg->addError(array('EMPTY_FIELDS', _AT('name')));
- }
-
- if (!$msg->containsErrors()) {
- $_POST['name'] = $addslashes($_POST['name']);
- $folder = abs($_POST['folder']);
- $parent_folder = abs($_POST['parent_folder']);
-
- $sql = "UPDATE ".TABLE_PREFIX."folders SET title='$_POST[name]' WHERE owner_type=$owner_type AND owner_id=$owner_id AND folder_id=$_POST[id] AND parent_folder_id=$parent_folder";
- mysql_query($sql, $db);
-
- $msg->addFeedback('FOLDER_EDITED_SUCCESSFULLY');
- header('Location: '.url_rewrite('mods/_standard/file_storage/index.php'.$owner_arg_prefix.'folder='.$parent_folder, AT_PRETTY_URL_IS_HEADER));
- exit;
- }
-
- $_GET['id'] = $_POST['id'];
- }
-
- $onload = 'document.form.name.focus();';
-
- require(AT_INCLUDE_PATH.'header.inc.php');
-
- $id = abs($_GET['id']);
-
- $sql = "SELECT title, parent_folder_id FROM ".TABLE_PREFIX."folders WHERE folder_id=$id";
- $result = mysql_query($sql, $db);
- if (!$row = mysql_fetch_assoc($result)) {
- $msg->printErrors('FOLDER_NOT_EXIST');
- require(AT_INCLUDE_PATH.'footer.inc.php');
- exit;
- }
- ?>
-
- <form method="post" action="<?php echo $_SERVER['PHP_SELF'].$owner_arg_prefix; ?>" name="form">
- <input type="hidden" name="id" value="<?php echo $id; ?>" />
- <input type="hidden" name="parent_folder" value="<?php echo $row['parent_folder_id']; ?>" />
- <div class="input-form">
- <div class="row">
- <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="name"><?php echo _AT('name'); ?></label><br />
- <input type="text" name="name" id="name" value="<?php echo htmlspecialchars($row['title']); ?>" size="40" maxlength="70" />
- </div>
-
- <div class="row buttons">
- <input type="submit" name="submit" value="<?php echo _AT('save'); ?>" accesskey="s" />
- <input type="submit" name="cancel" value="<?php echo _AT('cancel'); ?>" />
- </div>
- </div>
- </form>
-
- <?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>