initial commit of file from CVS for smeserver-webshare on Sat Sep 7 21:15:27 AEST 2024
This commit is contained in:
76
root/opt/webshare-tools/phpfm/incl/rename.inc.php
Normal file
76
root/opt/webshare-tools/phpfm/incl/rename.inc.php
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
|
||||
if (!@include_once("./incl/auth.inc.php"))
|
||||
include_once("../incl/auth.inc.php");
|
||||
|
||||
if ($AllowRename && isset($_GET['directory_name']) || $AllowRename && isset($_GET['filename']) || $AllowRename && isset($_POST['directory_name']) || $AllowRename && isset($_POST['filename']))
|
||||
{
|
||||
if (isset($_GET['rename']) && isset($_POST['directory_name']))
|
||||
{
|
||||
if (!is_valid_name(substr($new_directory_name, 0, -1)))
|
||||
print "<font color='#CC0000'>$StrFolderInvalidName</font>";
|
||||
else if (@file_exists($home_directory.$path.$new_directory_name))
|
||||
print "<font color='#CC0000'>$StrAlreadyExists</font>";
|
||||
else if (@rename($home_directory.$path.$directory_name, $home_directory.$path.$new_directory_name))
|
||||
print "<font color='#009900'>$StrRenameFolderSuccess</font>";
|
||||
else
|
||||
{
|
||||
print "<font color='#CC0000'>$StrRenameFolderFail</font><br /><br />";
|
||||
print $StrRenameFolderFailHelp;
|
||||
}
|
||||
}
|
||||
|
||||
else if (isset($_GET['rename']) && isset($_POST['filename']))
|
||||
{
|
||||
if (!is_valid_name($new_filename))
|
||||
print "<font color='#CC0000'>$StrFileInvalidName</font>";
|
||||
else if (@file_exists($home_directory.$path.$new_filename))
|
||||
print "<font color='#CC0000'>$StrAlreadyExists</font>";
|
||||
else if (@rename($home_directory.$path.$filename, $home_directory.$path.$new_filename))
|
||||
print "<font color='#009900'>$StrRenameFileSuccess</font>";
|
||||
else
|
||||
{
|
||||
print "<font color='#CC0000'>$StrRenameFileFail</font><br /><br />";
|
||||
print $StrRenameFileFailHelp;
|
||||
}
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
print "<table class='index' width=500 cellpadding=0 cellspacing=0>";
|
||||
print "<tr>";
|
||||
print "<td class='iheadline' height=21>";
|
||||
if (isset($_GET['directory_name'])) print "<font class='iheadline'> $StrRenameFolder \"".htmlentities(basename($directory_name))."\"</font>";
|
||||
else if (isset($_GET['filename'])) print "<font class='iheadline'> $StrRenameFile \"".htmlentities($filename)."\"</font>";
|
||||
print "</td>";
|
||||
print "<td class='iheadline' align='right' height=21>";
|
||||
print "<font class='iheadline'><a href='$base_url&path=".htmlentities(rawurlencode($path))."'><img src='icon/back.gif' border=0 alt='$StrBack'></a></font>";
|
||||
print "</td>";
|
||||
print "</tr>";
|
||||
print "<tr>";
|
||||
print "<td valign='top' colspan=2>";
|
||||
|
||||
print "<center><br />";
|
||||
|
||||
if (isset($_GET['directory_name'])) print "$StrRenameFolderQuestion<br /><br />";
|
||||
else if (isset($_GET['filename'])) print "$StrRenameFileQuestion<br /><br />";
|
||||
print "<form action='$base_url&output=rename&rename=true' method='post'>";
|
||||
if (isset($_GET['directory_name'])) print "<input name='new_directory_name' value=\"".htmlentities(basename($directory_name))."\" size=40> ";
|
||||
else if (isset($_GET['filename'])) print "<input name='new_filename' value=\"".htmlentities($filename)."\" size=40> ";
|
||||
print "<input class='bigbutton' type='submit' value='$StrRename'>";
|
||||
if (isset($_GET['directory_name'])) print "<input type='hidden' name=directory_name value=\"".htmlentities($directory_name)."\">";
|
||||
else if (isset($_GET['filename'])) print "<input type='hidden' name=filename value=\"".htmlentities($filename)."\">";
|
||||
print "<input type='hidden' name=path value=\"".htmlentities($path)."\">";
|
||||
print "</form>";
|
||||
|
||||
print "<br /><br /></center>";
|
||||
|
||||
print "</td>";
|
||||
print "</tr>";
|
||||
print "</table>";
|
||||
}
|
||||
}
|
||||
else
|
||||
print "<font color='#CC0000'>$StrAccessDenied</font>";
|
||||
|
||||
?>
|
Reference in New Issue
Block a user