2012-06-04 16:58:40 +02:00
|
|
|
<?php
|
|
|
|
|
/*
|
|
|
|
|
FusionPBX
|
|
|
|
|
Version: MPL 1.1
|
|
|
|
|
|
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
http://www.mozilla.org/MPL/
|
|
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
|
for the specific language governing rights and limitations under the
|
|
|
|
|
License.
|
|
|
|
|
|
|
|
|
|
The Original Code is FusionPBX
|
|
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
|
Portions created by the Initial Developer are Copyright (C) 2008-2012
|
|
|
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
|
Mark J Crane <markjcrane@fusionpbx.com>
|
2012-11-24 06:23:48 +01:00
|
|
|
James Rose <james.o.rose@gmail.com>
|
2012-06-04 16:58:40 +02:00
|
|
|
*/
|
|
|
|
|
include "root.php";
|
|
|
|
|
require_once "includes/require.php";
|
2013-07-06 07:50:55 +02:00
|
|
|
require_once "resources/check_auth.php";
|
2012-06-04 16:58:40 +02:00
|
|
|
if (permission_exists('script_editor_save')) {
|
|
|
|
|
//access granted
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
echo "access denied";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-24 06:23:48 +01:00
|
|
|
//add multi-lingual support
|
|
|
|
|
require_once "app_languages.php";
|
|
|
|
|
foreach($text as $key => $value) {
|
|
|
|
|
$text[$key] = $value[$_SESSION['domain']['language']['code']];
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
$folder = $_GET["folder"];
|
|
|
|
|
//$folder = str_replace ("\\", "/", $folder);
|
|
|
|
|
//if (substr($folder, -1) != "/") { $folder = $folder.'/'; }
|
|
|
|
|
$newfilename = $_GET["newfilename"];
|
|
|
|
|
$filename = $_GET["filename"];
|
|
|
|
|
//echo $folder.$file;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (strlen($folder) > 0 && strlen($newfilename) > 0) {
|
|
|
|
|
//echo "new file: ".$newfilename."<br>";
|
|
|
|
|
//echo "folder: ".$folder."<br>";
|
|
|
|
|
//echo "orig filename: ".$filename."<br>";;
|
|
|
|
|
rename($folder.$filename, $folder.$newfilename);
|
|
|
|
|
header("Location: fileoptions.php");
|
|
|
|
|
}
|
|
|
|
|
else { //display form
|
|
|
|
|
|
|
|
|
|
require_once "header.php";
|
|
|
|
|
echo "<br>";
|
|
|
|
|
echo "<div align='left'>";
|
|
|
|
|
echo "<form method='get' action=''>";
|
|
|
|
|
echo "<table>";
|
|
|
|
|
echo " <tr>";
|
2012-11-24 06:23:48 +01:00
|
|
|
echo " <td>".$text['label-path']."</td>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </tr>";
|
|
|
|
|
echo " <tr>";
|
|
|
|
|
echo " <td>".$folder.$filename."</td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo " <tr>";
|
|
|
|
|
echo " <td><br></td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo " <tr>";
|
2012-11-24 06:23:48 +01:00
|
|
|
echo " <td>".$text['label-file-name-orig']."</td>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </tr>";
|
|
|
|
|
echo " <tr>";
|
|
|
|
|
echo " <td>".$filename."</td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
|
|
|
|
|
echo "<br />";
|
|
|
|
|
|
|
|
|
|
echo "<table>";
|
|
|
|
|
echo " <tr>";
|
2012-11-24 06:23:48 +01:00
|
|
|
echo " <td>".$text['label-rename-file-to']."</td>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </tr>";
|
|
|
|
|
|
|
|
|
|
echo " <tr>";
|
|
|
|
|
echo " <td><input type='text' name='newfilename' value=''></td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
|
|
|
|
|
echo " <tr>";
|
|
|
|
|
echo " <td colspan='1' align='right'>";
|
|
|
|
|
echo " <input type='hidden' name='folder' value='$folder'>";
|
|
|
|
|
echo " <input type='hidden' name='filename' value='$filename'>";
|
2012-11-24 06:23:48 +01:00
|
|
|
echo " <input type='submit' value='".$text['button-rename-file']."'>";
|
2012-06-04 16:58:40 +02:00
|
|
|
echo " </td>";
|
|
|
|
|
echo " </tr>";
|
|
|
|
|
echo "</table>";
|
|
|
|
|
echo "</form>";
|
|
|
|
|
echo "</div>";
|
|
|
|
|
|
|
|
|
|
require_once "footer.php";
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|