123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- <?php
- /**
- * 文件查看
- *
- * @version $Id: file_manage_view.php 1 8:48 2010年7月13日Z tianya $
- * @package DedeCMS.Administrator
- * @copyright Copyright (c) 2007 - 2010, DesDev, Inc.
- * @license http://help.dedecms.com/usersguide/license.html
- * @link http://www.dedecms.com
- */
- require_once(dirname(__FILE__)."/config.php");
- CheckPurview('plus_文件管理器');
- require_once(DEDEINC."/oxwindow.class.php");
- $activepath = str_replace("..", "", $activepath);
- $activepath = preg_replace("#^\/{1,}#", "/", $activepath);
- if($activepath == "/") $activepath = "";
- if($activepath == "") $inpath = $cfg_basedir;
- else $inpath = $cfg_basedir.$activepath;
- //显示控制层
- //更改文件名
- if($fmdo=="rename")
- {
- if($activepath=="") $ndirstring = "根目录";
- $ndirstring = $activepath;
- $wintitle = " 文件管理";
- $wecome_info = "文件管理::更改文件名 [<a href='file_manage_main.php?activepath=$activepath'>文件浏览器</a>]</a>";
- $win = new OxWindow();
- $win->Init("file_manage_control.php","js/blank.js","POST");
- $win->AddHidden("fmdo",$fmdo);
- $win->AddHidden("activepath",$activepath);
- $win->AddHidden("filename",$filename);
- $win->AddTitle("更改文件名,当前路径:$ndirstring");
- $win->AddItem("旧名称:","<input name='oldfilename' type='input' class='alltxt' id='oldfilename' size='40' value='$filename'>");
- $win->AddItem("新名称:","<input name='newfilename' type='input' class='alltxt' size='40' id='newfilename'>");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- //新建目录
- else if($fmdo=="newdir")
- {
- if($activepath=="") $activepathname="根目录";
- else $activepathname=$activepath;
- $wintitle = " 文件管理";
- $wecome_info = " 文件管理::新建目录 [<a href='file_manage_main.php?activepath=$activepath'>文件浏览器</a>]</a>";
- $win = new OxWindow();
- $win->Init("file_manage_control.php","js/blank.js","POST");
- $win->AddHidden("fmdo",$fmdo);
- $win->AddHidden("activepath",$activepath);
- $win->AddHidden("token",make_hash());
- $win->AddTitle("当前目录 $activepathname ");
- $win->AddItem("新目录:","<input name='newpath' type='input' class='alltxt' id='newpath'>");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- //移动文件
- else if($fmdo=="move")
- {
- $wintitle = " 文件管理";
- $wecome_info = " 文件管理::移动文件 [<a href='file_manage_main.php?activepath=$activepath'>文件浏览器</a>]</a>";
- $win = new OxWindow();
- $win->Init("file_manage_control.php","js/blank.js","POST");
- $win->AddHidden("fmdo",$fmdo);
- $win->AddHidden("activepath",$activepath);
- $win->AddHidden("filename",$filename);
- $win->AddTitle("新位置前面不加'/'表示相对于当前位置,加'/'表示相对于根目录。");
- $win->AddItem("被移动文件:",$filename);
- $win->AddItem("当前位置:",$activepath);
- $win->AddItem("新位置:","<input name='newpath' type='input' class='alltxt' id='newpath' size='40'>");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- //删除文件
- else if($fmdo=="del")
- {
- $wintitle = " 文件管理";
- $wecome_info = " 文件管理::删除文件 [<a href='file_manage_main.php?activepath=$activepath'>文件浏览器</a>]</a>";
- $win = new OxWindow();
- $win->Init("file_manage_control.php","js/blank.js","POST");
- $win->AddHidden("fmdo",$fmdo);
- $win->AddHidden("activepath",$activepath);
- $win->AddHidden("filename",$filename);
- if(@is_dir($cfg_basedir.$activepath."/$filename"))
- {
- $wmsg = "你确信要删除目录:$filename 吗?";
- }
- else
- {
- $wmsg = "你确信要删除文件:$filename 吗?";
- }
- $win->AddTitle("删除文件确认");
- $win->AddMsgItem($wmsg,"50");
- $winform = $win->GetWindow("ok");
- $win->Display();
- }
- //编辑文件
- else if($fmdo=="edit")
- {
- if(!isset($backurl))
- {
- $backurl = "";
- }
- $activepath = str_replace("..","",$activepath);
- $filename = str_replace("..","",$filename);
- $file = "$cfg_basedir$activepath/$filename";
- $content = "";
- if(is_file($file))
- {
- $fp = fopen($file,"r");
- $content = fread($fp,filesize($file));
- fclose($fp);
- $content = dede_htmlspecialchars($content);
- }
- $contentView = "<textarea name='str' id='str' style='width:99%;height:450px;background:#ffffff;'>$content</textarea>\r\n";
- $GLOBALS['filename'] = $filename;
- $path_parts = pathinfo($filename);
- if ( $path_parts['extension'] == 'php' )
- {
- $GLOBALS['extension'] = 'text/x-php';
- } else if($path_parts['extension'] == 'js'){
- $GLOBALS['extension'] = 'text/javascript';
- } else if($path_parts['extension'] == 'css'){
- $GLOBALS['extension'] = 'text/css';
- } else {
- $GLOBALS['extension'] = 'text/html';
- }
- $ctp = new DedeTagParse();
- $ctp->LoadTemplate(DEDEADMIN."/templets/file_edit.htm");
- $ctp->display();
- }
- /*编辑文件,可视化模式
- else if($fmdo=="editview")
- {
- if(!isset($backurl))
- {
- $backurl = "";
- }
- if(!isset($ishead))
- {
- $ishead = "";
- }
- $activepath = str_replace("..","",$activepath);
- $filename = str_replace("..","",$filename);
- $file = "$cfg_basedir$activepath/$filename";
- $fp = fopen($file,"r");
- @$content = fread($fp,filesize($file));
- fclose($fp);
- if((eregi("<html",$content) && eregi("<body",$content)) || $ishead == "yes")
- {
- $contentView = GetEditor("str",$content,"500","Default","string","true");
- }
- else
- {
- $contentView = GetEditor("str",$content,"500","Default","string","false");
- }
- $GLOBALS['filename'] = $filename;
- $ctp = new DedeTagParse();
- $ctp->LoadTemplate(DEDEADMIN."/templets/file_edit_view.htm");
- $ctp->display();
- }
- */
- //新建文件
- else if($fmdo=="newfile")
- {
- $content = "";
- $GLOBALS['filename'] = "newfile.txt";
- $contentView = "<textarea name='str' style='width:99%;height:400'></textarea>\r\n";
- $GLOBALS['token'] = make_hash();
- $ctp = new DedeTagParse();
- $ctp->LoadTemplate(DEDEADMIN."/templets/file_edit.htm");
- $ctp->display();
- }
- //上传文件
- else if($fmdo=="upload")
- {
- $ctp = new DedeTagParse();
- $ctp->LoadTemplate(DEDEADMIN."/templets/file_upload.htm");
- $ctp->display();
- }
|