|
@@ -24,63 +24,71 @@
|
|
Mark J Crane <[email protected]>
|
|
Mark J Crane <[email protected]>
|
|
James Rose <[email protected]>
|
|
James Rose <[email protected]>
|
|
*/
|
|
*/
|
|
-include "root.php";
|
|
|
|
-require_once "resources/require.php";
|
|
|
|
-require_once "resources/check_auth.php";
|
|
|
|
-if (permission_exists('script_editor_view')) {
|
|
|
|
- //access granted
|
|
|
|
-}
|
|
|
|
-else {
|
|
|
|
- echo "access denied";
|
|
|
|
- exit;
|
|
|
|
-}
|
|
|
|
|
|
+
|
|
|
|
+//includes
|
|
|
|
+ include "root.php";
|
|
|
|
+ require_once "resources/require.php";
|
|
|
|
+ require_once "resources/check_auth.php";
|
|
|
|
+
|
|
|
|
+//check permissions
|
|
|
|
+ if (permission_exists('script_editor_view')) {
|
|
|
|
+ //access granted
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ echo "access denied";
|
|
|
|
+ exit;
|
|
|
|
+ }
|
|
|
|
|
|
//add multi-lingual support
|
|
//add multi-lingual support
|
|
$language = new text;
|
|
$language = new text;
|
|
$text = $language->get();
|
|
$text = $language->get();
|
|
|
|
|
|
-$title = $text['title-manage-files'];
|
|
|
|
-require_once "header.php";
|
|
|
|
-
|
|
|
|
-$file = $_GET["file"];
|
|
|
|
-$file = str_replace ("\\", "/", $file);
|
|
|
|
-$folder = $_GET["folder"];
|
|
|
|
-$folder = str_replace ($file, "", $folder);
|
|
|
|
-$urlpath = str_replace ($_SERVER["DOCUMENT_ROOT"], "", $folder);
|
|
|
|
-
|
|
|
|
-echo "<table cellpadding='0' cellspacing='0' border='0' style='height: 100%; width: 100%;'>\n";
|
|
|
|
-echo "<tr>";
|
|
|
|
-echo "<td colspan='2'>";
|
|
|
|
-
|
|
|
|
-echo "<table border='0'>";
|
|
|
|
-echo "<form method='post' name='frm' action=''>";
|
|
|
|
-echo "<tr><td align='right'>".$text['label-path']."</td><td width='95%'><input type='text' name='folder' id='folder' style=\"width: 100%;\" value=''></td><tr>\n";
|
|
|
|
-echo "<tr><td align='right'>".$text['label-file']."</td><td width='95%' style=\"width: 60%;\"><input type='text' name='filename' id='filename' style=\"width: 100%;\" value=''></div></td></tr>\n";
|
|
|
|
-echo "</form>";
|
|
|
|
-echo "</table>";
|
|
|
|
-
|
|
|
|
-echo "</td>\n";
|
|
|
|
-echo "</tr>\n";
|
|
|
|
-
|
|
|
|
-echo "<tr>\n";
|
|
|
|
-echo "<td valign='top' width='200' nowrap>";
|
|
|
|
-echo " <iframe src='fileoptionslist.php' style='border: solid 1px #ccc; height: calc(100% - 3px); width: calc(100% - 4px);'></iframe>";
|
|
|
|
-echo "</td>\n";
|
|
|
|
-echo "<td valign='top' style='height: 100%; padding: 0;'>";
|
|
|
|
|
|
+//set the title and include the header
|
|
|
|
+ $title = $text['title-manage-files'];
|
|
|
|
+ require_once "header.php";
|
|
|
|
|
|
-echo "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'>";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick=\"window.location='filenew.php?folder='+document.getElementById('folder').value;\" value='".$text['button-add-file']."'></td></tr>\n";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick=\"window.location='foldernew.php?folder='+document.getElementById('folder').value;\" value='".$text['button-add-dir']."'></td></tr>\n";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick=\"window.location='filerename.php?folder='+document.getElementById('folder').value+'&filename='+document.getElementById('filename').value;\" value='".$text['button-rename-file']."'></td></tr>\n";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick=\"if (confirm('".$text['message-delete-file']."')){ window.location='filedelete.php?folder='+document.getElementById('folder').value+'&file='+document.getElementById('filename').value; }\" value='".$text['button-del-file']."'></td></tr>\n";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick=\"if (confirm('".$text['message-delete-folder']."')){ window.location='folderdelete.php?folder='+document.getElementById('folder').value; }\" value='".$text['button-del-dir']."'></td></tr>\n";
|
|
|
|
-echo " <tr><td height='100%'> </td></tr>\n";
|
|
|
|
-echo " <tr><td><input type='button' class='btn' onclick='opener.location.reload(); self.close();' value='".$text['button-close']."'></td></tr>\n";
|
|
|
|
-echo "</table>";
|
|
|
|
|
|
+//set the variables
|
|
|
|
+ $file = $_GET["file"];
|
|
|
|
+ $file = str_replace ("\\", "/", $file);
|
|
|
|
+ $folder = $_GET["folder"];
|
|
|
|
+ $folder = str_replace ($file, "", $folder);
|
|
|
|
+ $urlpath = str_replace ($_SERVER["DOCUMENT_ROOT"], "", $folder);
|
|
|
|
|
|
-echo "</td>\n";
|
|
|
|
-echo "</tr>\n";
|
|
|
|
-echo "</table>";
|
|
|
|
|
|
+//show the content
|
|
|
|
+ echo "<table cellpadding='0' cellspacing='0' border='0' style='height: 100%; width: 100%;'>\n";
|
|
|
|
+ echo "<tr>";
|
|
|
|
+ echo "<td colspan='2'>";
|
|
|
|
+
|
|
|
|
+ echo "<table border='0'>";
|
|
|
|
+ echo "<form method='post' name='frm' action=''>";
|
|
|
|
+ echo "<tr><td align='right'>".$text['label-path']."</td><td width='95%'><input type='text' name='folder' id='folder' style=\"width: 100%;\" value=''></td><tr>\n";
|
|
|
|
+ echo "<tr><td align='right'>".$text['label-file']."</td><td width='95%' style=\"width: 60%;\"><input type='text' name='filename' id='filename' style=\"width: 100%;\" value=''></div></td></tr>\n";
|
|
|
|
+ echo "</form>";
|
|
|
|
+ echo "</table>";
|
|
|
|
+
|
|
|
|
+ echo "</td>\n";
|
|
|
|
+ echo "</tr>\n";
|
|
|
|
+
|
|
|
|
+ echo "<tr>\n";
|
|
|
|
+ echo "<td valign='top' width='200' nowrap>";
|
|
|
|
+ echo " <iframe src='fileoptionslist.php' style='border: solid 1px #ccc; height: calc(100% - 3px); width: calc(100% - 4px);'></iframe>";
|
|
|
|
+ echo "</td>\n";
|
|
|
|
+ echo "<td valign='top' style='height: 100%; padding: 0;'>";
|
|
|
|
+
|
|
|
|
+ echo "<table cellpadding='0' cellspacing='0' border='0' width='100%' height='100%'>";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick=\"window.location='filenew.php?folder='+document.getElementById('folder').value;\" value='".$text['button-add-file']."'></td></tr>\n";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick=\"window.location='foldernew.php?folder='+document.getElementById('folder').value;\" value='".$text['button-add-dir']."'></td></tr>\n";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick=\"window.location='filerename.php?folder='+document.getElementById('folder').value+'&filename='+document.getElementById('filename').value;\" value='".$text['button-rename-file']."'></td></tr>\n";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick=\"if (confirm('".$text['message-delete-file']."')){ window.location='filedelete.php?folder='+document.getElementById('folder').value+'&file='+document.getElementById('filename').value; }\" value='".$text['button-del-file']."'></td></tr>\n";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick=\"if (confirm('".$text['message-delete-folder']."')){ window.location='folderdelete.php?folder='+document.getElementById('folder').value; }\" value='".$text['button-del-dir']."'></td></tr>\n";
|
|
|
|
+ echo " <tr><td height='100%'> </td></tr>\n";
|
|
|
|
+ echo " <tr><td><input type='button' class='btn' onclick='opener.location.reload(); self.close();' value='".$text['button-close']."'></td></tr>\n";
|
|
|
|
+ echo "</table>";
|
|
|
|
+
|
|
|
|
+ echo "</td>\n";
|
|
|
|
+ echo "</tr>\n";
|
|
|
|
+ echo "</table>";
|
|
|
|
+
|
|
|
|
+ require_once "footer.php";
|
|
|
|
|
|
-require_once "footer.php";
|
|
|
|
-?>
|
|
|
|
|
|
+?>
|