123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669 |
- <?php
- /**
- * 模块管理
- *
- * @version $Id: module_main.php 1 14:17 2010年7月20日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('sys_module');
- require_once(dirname(__FILE__)."/../include/dedemodule.class.php");
- require_once(dirname(__FILE__)."/../include/oxwindow.class.php");
- if(empty($action)) $action = '';
- require_once(dirname(__FILE__)."/inc/config_update.php");
- $mdir = DEDEDATA.'/module';
- $mdurl = UPDATEHOST.'dedecms/module_'.$cfg_soft_lang.'/modulelist.txt';
- function TestWriteAble($d)
- {
- $tfile = '_dedet.txt';
- $d = preg_replace("#\/$#", '', $d);
- $fp = @fopen($d.'/'.$tfile,'w');
- if(!$fp) return FALSE;
- else
- {
- fclose($fp);
- $rs = @unlink($d.'/'.$tfile);
- if($rs) return TRUE;
- else return FALSE;
- }
- }
- function ReWriteConfigAuto()
- {
- global $dsql;
- $configfile = DEDEDATA.'/config.cache.inc.php';
- if(!is_writeable($configfile))
- {
- echo "配置文件'{$configfile}'不支持写入,无法修改系统配置参数!";
- //ClearAllLink();
- exit();
- }
- $fp = fopen($configfile,'w');
- flock($fp,3);
- fwrite($fp,"<"."?php\r\n");
- $dsql->SetQuery("SELECT `varname`,`type`,`value`,`groupid` FROM `#@__sysconfig` ORDER BY aid ASC ");
- $dsql->Execute();
- while($row = $dsql->GetArray())
- {
- if($row['type']=='number') fwrite($fp,"\${$row['varname']} = ".$row['value'].";\r\n");
- else fwrite($fp,"\${$row['varname']} = '".str_replace("'",'',$row['value'])."';\r\n");
- }
- fwrite($fp,"?".">");
- fclose($fp);
- }
- function SendData($hash = '',$type = 1)
- {
- if(!empty($hash)){
- global $cfg_basehost;
- $str = "basehost=".$cfg_basehost."&hash=".$hash."&type=".$type;
- $fp = fsockopen('www.dedecms.com',80,$errno,$errstr,30);
- if(!$fp)
- {
- return FALSE;
- }else{
- fputs($fp, "POST http://www.dedecms.com/plugin.php HTTP/1.1\r\n");
- fputs($fp, "Host: www.dedecms.com\r\n");
- fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
- fputs($fp, "Content-length: ".strlen($str)."\r\n");
- fputs($fp, "Connection: close\r\n\r\n");
- fputs($fp, $str."\r\n\r\n");
- fclose($fp);
- }
- }else{
- return FALSE;
- }
- }
- /*--------------
- function ShowAll();
- --------------*/
- if($action=='')
- {
- $types = array('soft'=>'模块','templets'=>'模板','plus'=>'小插件','patch'=>'补丁');
- $dm = new DedeModule($mdir);
- if(empty($moduletype)) $moduletype = '';
-
- $modules_remote = $dm->GetModuleUrlList($moduletype,$mdurl);
- $modules = array();
- $modules = $dm->GetModuleList($moduletype);
- is_array($modules) || $modules = array();
- $modules = array_merge($modules,$modules_remote);
- require_once(dirname(__FILE__)."/templets/module_main.htm");
- $dm->Clear();
- exit();
- }
- /*--------------
- function Setup();
- --------------*/
- else if($action=='setup')
- {
- $dm = new DedeModule($mdir);
- $infos = $dm->GetModuleInfo($hash);
- if($infos['url']=='') $infos['url'] = ' ';
- $alertMsg = ($infos['lang'] == $cfg_soft_lang ? '' : '<br /><font color="red">(这个模块的语言编码与你系统的编码不一致,请向开发者确认它的兼容性)</font>');
- $filelists = $dm->GetFileLists($hash);
- $filelist = '';
- $prvdirs = array();
- $incdir = array();
- foreach($filelists as $v)
- {
- if(empty($v['name'])) continue;
- if($v['type']=='dir')
- {
- $v['type'] = '目录';
- $incdir[] = $v['name'];
- }
- else
- {
- $v['type'] = '文件';
- }
- $filelist .= "{$v['type']}|{$v['name']}\r\n";
- }
- //检测需要的目录权限
- foreach($filelists as $v)
- {
- $prvdir = preg_replace("#\/([^\/]*)$#", '/', $v['name']);
- if(!preg_match("#^\.#", $prvdir)) $prvdir = './';
- $n = TRUE;
- foreach($incdir as $k=>$v)
- {
- if(preg_match("#^".$v."#i", $prvdir))
- {
- $n = FALSE;
- BREAK;
- }
- }
- if(!isset($prvdirs[$prvdir]) && $n && is_dir($prvdir))
- {
- $prvdirs[$prvdir][0] = 1;
- $prvdirs[$prvdir][1] = TestWriteAble($prvdir);
- }
- }
- $prvdir = "<table cellpadding='1' cellspacing='1' width='350' bgcolor='#cfcfcf' style='margin-top:5px;'>\r\n";
- $prvdir .= "<tr style='background:#FBFCE2'><th width='270'>目录</td><th align='center'>可写</td></tr>\r\n";
- foreach($prvdirs as $k=>$v)
- {
- if($v) $cw = '√';
- else $cw = '<font color="red">×</font>';
- $prvdir .= "<tr bgcolor='#ffffff'><td >$k</td>";
- $prvdir .= "<td align='center' >$cw</td></tr>\r\n";
- }
- $prvdir .= "</table>";
- $win = new OxWindow();
- $win->Init("module_main.php","js/blank.js","post");
- $wecome_info = "模块管理";
- $win->AddTitle(" <a href='module_main.php'>模块管理</a> >> 安装模块: {$infos['name']}");
- $win->AddHidden("hash",$hash);
- $win->AddHidden("action",'setupstart');
- if(trim($infos['url'])=='') $infos['url'] = '无';
- $msg = "<style>.dtb{border-bottom:1px dotted #cccccc}</style>
- <table width='98%' border='0' cellspacing='0' cellpadding='0'>
- <tr>
- <td width='20%' height='28' class='dtb'>模块名称:</td>
- <td width='80%' class='dtb'>{$infos['name']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>语言:</td>
- <td class='dtb'>{$infos['lang']} {$alertMsg}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>文件大小:</td>
- <td class='dtb'>{$infos['filesize']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>团队名称:</td>
- <td class='dtb'>{$infos['team']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>发布时间:</td>
- <td class='dtb'>{$infos['time']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>电子邮箱:</td>
- <td class='dtb'>{$infos['email']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>官方网址:</td>
- <td class='dtb'>{$infos['url']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>使用协议:</td>
- <td class='dtb'><a href='module_main.php?action=showreadme&hash={$hash}' target='_blank'>点击浏览...</a></td>
- </tr>
- <tr>
- <td height='30' class='dtb' bgcolor='#F9FCEF' colspan='2'>
- <b>注意事项:</b>
- 安装时请确保文件列表中涉及的目录前可写入权限,此外“后台管理目录”、“后台管理目录/templets”目录也必须暂时设置可写入权限。
- </td>
- </tr>
- <tr>
- <td height='30'><b>目录权限检测:</b><br /> ../ 为根目录 <br /> ./ 表示当前目录</td>
- <td>
- $prvdir
- </td>
- </tr>
- <tr>
- <td height='30'>模块包含的所有文件列表:</td>
- <td></td>
- </tr>
- <tr>
- <td height='164' colspan='2'>
- <textarea name='filelists' id='filelists' style='width:90%;height:200px'>{$filelist}</textarea>
- </td>
- </tr>
- <tr>
- <td height='28'>对于已存在文件处理方法:</td>
- <td>
- <input name='isreplace' type='radio' value='1' checked='checked' />
- 覆盖
- <input name='isreplace' type='radio' value='3' />
- 覆盖,保留副本
- <input type='radio' name='isreplace' value='0' />
- 保留旧文件
- </td>
- </tr>
- </table>
- ";
- $win->AddMsgItem("<div style='padding-left:10px;line-height:150%'>$msg</div>");
- $winform = $win->GetWindow("ok","");
- $win->Display();
- $dm->Clear();
- exit();
- }
- /*---------------
- function SetupRun()
- --------------*/
- else if($action=='setupstart')
- {
- if(!is_writeable($mdir))
- {
- ShowMsg("目录 {$mdir} 不支持写入,这将导致安装程序没法正常创建!","-1");
- exit();
- }
- $dm = new DedeModule($mdir);
- $minfos = $dm->GetModuleInfo($hash);
- extract($minfos, EXTR_SKIP);
- $menustring = addslashes($dm->GetSystemFile($hash,'menustring'));
- $indexurl = str_replace('**', '=', $indexurl);
- $query = "INSERT INTO `#@__sys_module`(`hashcode` , `modname` , `indexname` , `indexurl` , `ismember` , `menustring` )
- VALUES ('$hash' , '$name' , '$indexname' , '$indexurl' , '$ismember' , '$menustring' ) ";
- $rs = $dsql->ExecuteNoneQuery("DELETE FROM `#@__sys_module` WHERE hashcode LIKE '$hash' ");
- $rs = $dsql->ExecuteNoneQuery($query);
- if(!$rs)
- {
- ShowMsg('保存数据库信息失败,无法完成安装!'.$dsql->GetError(),'javascript:;');
- exit();
- }
- $dm->WriteFiles($hash,$isreplace);
- $filename = '';
- if(!isset($autosetup) || $autosetup==0) $filename = $dm->WriteSystemFile($hash, 'setup');
- if(!isset($autodel) || $autodel==0) $dm->WriteSystemFile($hash, 'uninstall');
- $dm->WriteSystemFile($hash,'readme');
- $dm->Clear();
- //用模块的安装程序安装
- if(!isset($autosetup) || $autosetup==0)
- {
- include(DEDEDATA.'/module/'.$filename);
- exit();
- }
- //系统自动安装
- else
- {
- $mysql_version = $dsql->GetVersion(TRUE);
- //默认使用MySQL 4.1 以下版本的SQL语句,对大于4.1版本采用替换处理 TYPE=MyISAM ==> ENGINE=MyISAM DEFAULT CHARSET=#~lang~#
- $setupsql = $dm->GetSystemFile($hash, 'setupsql40');
- $setupsql = preg_replace("#ENGINE=MyISAM#i", 'TYPE=MyISAM', $setupsql);
- $sql41tmp = 'ENGINE=MyISAM DEFAULT CHARSET='.$cfg_db_language;
-
- if($mysql_version >= 4.1)
- {
- $setupsql = preg_replace("#TYPE=MyISAM#i", $sql41tmp, $setupsql);
- }
- //_ROOTURL_
- if($cfg_cmspath=='/') $cfg_cmspath = '';
- $rooturl = $cfg_basehost.$cfg_cmspath;
-
- $setupsql = preg_replace("#_ROOTURL_#i", $rooturl, $setupsql);
- $setupsql = preg_replace("#[\r\n]{1,}#", "\n", $setupsql);
- $sqls = @split(";[ \t]{0,}\n", $setupsql);
- foreach($sqls as $sql)
- {
- if(trim($sql)!='') $dsql->ExecuteNoneQuery($sql);
- }
- ReWriteConfigAuto();
- $rflwft = "<script language='javascript' type='text/javascript'>\r\n";
- $rflwft .= "if(window.navigator.userAgent.indexOf('MSIE')>=1) top.document.frames.menu.location = 'index_menu_module.php';\r\n";
- $rflwft .= "else top.document.getElementById('menufra').src = 'index_menu_module.php';\r\n";
- $rflwft .= "</script>";
- echo $rflwft;
- UpDateCatCache();
- SendData($hash);
- ShowMsg('模块安装完成...', 'module_main.php');
- exit();
- }
- }
- /*--------------
- function DelModule();
- --------------*/
- else if($action=='del')
- {
- $dm = new DedeModule($mdir);
- $infos = $dm->GetModuleInfo($hash);
- if($infos['url']=='') $infos['url'] = ' ';
- $alertMsg = ($infos['lang']==$cfg_soft_lang ? '' : '<br /><font color="red">(这个模块的语言编码与你系统的编码不一致,请向开发者确认它的兼容性)</font>');
- $win = new OxWindow();
- $win->Init("module_main.php", "js/blank.js", "post");
- $wecome_info = "模块管理";
- $win->AddTitle("<a href='module_main.php'>模块管理</a> >> 删除模块: {$infos['name']}");
- $win->AddHidden('hash', $hash);
- $win->AddHidden('action', 'delok');
- $msg = "<style>.dtb{border-bottom:1px dotted #cccccc}</style>
- <table width='750' border='0' cellspacing='0' cellpadding='0'>
- <tr>
- <td width='200' height='28' class='dtb'>模块名称:</td>
- <td width='550' class='dtb'>{$infos['name']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>语言:</td>
- <td class='dtb'>{$infos['lang']} {$alertMsg}</td>
- </tr>
- <tr>
- <td width='200' height='28' class='dtb'>文件大小:</td>
- <td width='550' class='dtb'>{$infos['filesize']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>团队名称:</td>
- <td class='dtb'>{$infos['team']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>发布时间:</td>
- <td class='dtb'>{$infos['time']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>电子邮箱:</td>
- <td class='dtb'>{$infos['email']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>官方网址:</td>
- <td class='dtb'>{$infos['url']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>使用协议:</td>
- <td class='dtb'><a href='module_main.php?action=showreadme&hash={$hash}' target='_blank'>点击浏览...</a></td>
- </tr>
- <tr>
- <td height='28' colspan='2'>
- 删除模块仅删除这个模块的安装包文件,如果你已经安装,请执行<a href='module_main.php?hash={$hash}&action=uninstall'><u>卸载程序</u></a>来删除!
- </td>
- </tr>
- </table>
- ";
- $win->AddMsgItem("<div style='padding-left:10px;line-height:150%'>$msg</div>");
- $winform = $win->GetWindow("ok","");
- $win->Display();
- $dm->Clear();
- exit();
- }
- else if($action=='delok')
- {
- $dm = new DedeModule($mdir);
- $modfile = $mdir."/".$dm->GetHashFile($hash);
- unlink($modfile) or die("删除文件 {$modfile} 失败!");
- ShowMsg("成功删除一个模块文件!","module_main.php");
- exit();
- }
- /*--------------
- function UnInstall();
- --------------*/
- else if($action=='uninstall')
- {
- $dm = new DedeModule($mdir);
- $infos = $dm->GetModuleInfo($hash);
- if($infos['url']=='') $infos['url'] = ' ';
- $alertMsg = ($infos['lang']==$cfg_soft_lang ? '' : '<br /><font color="red">(这个模块的语言编码与你系统的编码不一致,请向开发者确认它的兼容性)</font>');
- $filelists = $dm->GetFileLists($hash);
- $filelist = '';
- foreach($filelists as $v)
- {
- if(empty($v['name'])) continue;
- if($v['type']=='dir') $v['type'] = '目录';
- else $v['type'] = '文件';
- $filelist .= "{$v['type']}|{$v['name']}\r\n";
- }
- $win = new OxWindow();
- $win->Init("module_main.php", "js/blank.js", "post");
- $wecome_info = "模块管理";
- $win->AddTitle("<a href='module_main.php'>模块管理</a> >> 卸载模块: {$infos['name']}");
- $win->AddHidden("hash",$hash);
- $win->AddHidden("action",'uninstallok');
- $msg = "<style>.dtb{border-bottom:1px dotted #cccccc}</style>
- <table width='750' border='0' cellspacing='0' cellpadding='0'>
- <tr>
- <td width='200' height='28' class='dtb'>模块名称:</td>
- <td width='550' class='dtb'>{$infos['name']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>语言:</td>
- <td class='dtb'>{$infos['lang']} {$alertMsg}</td>
- </tr>
- <tr>
- <td width='200' height='28' class='dtb'>文件大小:</td>
- <td width='550' class='dtb'>{$infos['filesize']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>团队名称:</td>
- <td class='dtb'>{$infos['team']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>发布时间:</td>
- <td class='dtb'>{$infos['time']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>电子邮箱:</td>
- <td class='dtb'>{$infos['email']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>官方网址:</td>
- <td class='dtb'>{$infos['url']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>使用协议:</td>
- <td class='dtb'><a href='module_main.php?action=showreadme&hash={$hash}' target='_blank'>点击浏览...</a></td>
- </tr>
- <tr>
- <td height='28'>模块包含的文件:<br />(文件路径相对于当前目录)</td><td> </td>
- </tr>
- <tr>
- <td height='164' colspan='2'>
- <textarea name='filelists' id='filelists' style='width:90%;height:200px'>{$filelist}</textarea>
- </td>
- </tr>
- <tr>
- <td height='28'>对于模块的文件处理方法:</td>
- <td>
- <input type='radio' name='isreplace' value='0' checked='checked' />
- 手工删除文件,仅运行卸载程序
- <input name='isreplace' type='radio' value='2' />
- 删除模块的所有文件
- </td>
- </tr>
- </table>
- ";
- $win->AddMsgItem("<div style='padding-left:10px;line-height:150%'>$msg</div>");
- $winform = $win->GetWindow("ok","");
- $win->Display();
- $dm->Clear();
- exit();
- }
- /*--------------
- function UnInstallRun();
- --------------*/
- else if($action=='uninstallok')
- {
- $dsql->ExecuteNoneQuery("DELETE FROM `#@__sys_module` WHERE hashcode LIKE '$hash' ");
- $dm = new DedeModule($mdir);
- $minfos = $dm->GetModuleInfo($hash);
- extract($minfos, EXTR_SKIP);
- if(!isset($moduletype) || $moduletype != 'patch' )
- {
- $dm->DeleteFiles($hash, $isreplace);
- }
- @$dm->DelSystemFile($hash, 'readme');
- @$dm->DelSystemFile($hash, 'setup');
- $dm->Clear();
- if(!isset($autodel) || $autodel==0)
- {
- include(DEDEDATA."/module/{$hash}-uninstall.php");
- @unlink(DEDEDATA."/module/{$hash}-uninstall.php");
- exit();
- }
- else
- {
- @$dm->DelSystemFile($hash, 'uninstall');
- $delsql = $dm->GetSystemFile($hash, 'delsql');
- if(trim($delsql)!='')
- {
- $sqls = explode(';', $delsql);
- foreach($sqls as $sql)
- {
- if(trim($sql)!='') $dsql->ExecuteNoneQuery($sql);
- }
- }
-
- ReWriteConfigAuto();
-
- $rflwft = "<script language='javascript' type='text/javascript'>\r\n";
- $rflwft .= "if(window.navigator.userAgent.indexOf('MSIE')>=1) top.document.frames.menu.location = 'index_menu_module.php';\r\n";
- $rflwft .= "else top.document.getElementById('menufra').src = 'index_menu_module.php';\r\n";
- $rflwft .= "</script>";
- echo $rflwft;
- SendData($hash,2);
- ShowMsg('模块卸载完成...','module_main.php');
- exit();
- }
- }
- /*--------------
- function ShowReadme();
- --------------*/
- else if($action=='showreadme')
- {
- $dm = new DedeModule($mdir);
- $msg = $dm->GetSystemFile($hash,'readme');
- $msg = preg_replace("/(.*)<body/isU","",$msg);
- $msg = preg_replace("/<\/body>(.*)/isU","",$msg);
- $dm->Clear();
- $win = new OxWindow();
- $win->Init("module_main.php","js/blank.js","post");
- $wecome_info = "模块管理";
- $win->AddTitle("<a href='module_main.php'>模块管理</a> >> 使用说明:");
- $win->AddMsgItem("<div style='padding-left:10px;line-height:150%'>$msg</div>");
- $winform = $win->GetWindow("hand");
- $win->Display();
- exit();
- }
- /*--------------
- function ViewOne();
- --------------*/
- else if($action=='view')
- {
- $dm = new DedeModule($mdir);
- $infos = $dm->GetModuleInfo($hash);
- if($infos['url']=='') $infos['url'] = ' ';
- $alertMsg = ($infos['lang'] == $cfg_soft_lang ? '' : '<br /><font color="red">(这个模块的语言编码与你系统的编码不一致,请向开发者确认它的兼容性)</font>');
- $filelists = $dm->GetFileLists($hash);
- $filelist = '';
- $setupinfo = '';
- foreach($filelists as $v)
- {
- if(empty($v['name'])) continue;
- if($v['type']=='dir') $v['type'] = '目录';
- else $v['type'] = '文件';
- $filelist .= "{$v['type']}|{$v['name']}\r\n";
- }
- if(file_exists(DEDEDATA."/module/{$hash}-readme.php"))
- {
- $setupinfo = "已安装 <a href='module_main.php?action=uninstall&hash={$hash}'>卸载</a>";
- } else {
- $setupinfo = "未安装 <a href='module_main.php?action=setup&hash={$hash}'>安装</a>";
- }
- $win = new OxWindow();
- $win->Init("", "js/blank.js","");
- $wecome_info = "模块管理";
- $win->AddTitle("<a href='module_main.php'>模块管理</a> >> 模块详情: {$infos['name']}");
- $msg = "<style>.dtb{border-bottom:1px dotted #cccccc}</style>
- <table width='98%' border='0' cellspacing='0' cellpadding='0'>
- <tr>
- <td width='20%' height='28' class='dtb'>模块名称:</td>
- <td width='80%' class='dtb'>{$infos['name']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>语言:</td>
- <td class='dtb'>{$infos['lang']} {$alertMsg}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>文件大小:</td>
- <td class='dtb'>{$infos['filesize']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>是否已安装:</td>
- <td class='dtb'>{$setupinfo}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>团队名称:</td>
- <td class='dtb'>{$infos['team']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>发布时间:</td>
- <td class='dtb'>{$infos['time']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>电子邮箱:</td>
- <td class='dtb'>{$infos['email']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>官方网址:</td>
- <td class='dtb'>{$infos['url']}</td>
- </tr>
- <tr>
- <td height='28' class='dtb'>使用协议:</td>
- <td class='dtb'><a href='module_main.php?action=showreadme&hash={$hash}' target='_blank'>点击浏览...</a></td>
- </tr>
- <tr>
- <td height='28'>模块包含的文件:<br />(文件路径相对于当前目录)</td><td> </td>
- </tr>
- <tr>
- <td height='164' colspan='2'>
- <textarea name='filelists' id='filelists' style='width:90%;height:200px'>{$filelist}</textarea>
- </td>
- </tr>
- </table>
- ";
- $win->AddMsgItem("<div style='padding-left:10px;line-height:150%'>$msg</div>");
- $winform = $win->GetWindow('hand', '');
- $win->Display();
- $dm->Clear();
- exit();
- }
- /*--------------
- function Edit();
- --------------*/
- else if($action=='edit')
- {
- $dm = new DedeModule($mdir);
- $minfos = $dm->GetModuleInfo($hash);
- extract($minfos, EXTR_SKIP);
- if(!isset($lang)) $lang = 'gb2312';
- if(!isset($moduletype)) $moduletype = 'soft';
- $menustring = $dm->GetSystemFile($hash, 'menustring');
- $setupsql40 = dede_htmlspecialchars($dm->GetSystemFile($hash, 'setupsql40'));
- $readmetxt = $dm->GetSystemFile($hash, 'readme');
- $delsql = $dm->GetSystemFile($hash, 'delsql');
- $filelist = $dm->GetSystemFile($hash,'oldfilelist',false);
- $indexurl = str_replace('**', '=', $indexurl);
- $dm->Clear();
-
- require_once(dirname(__FILE__).'/templets/module_edit.htm');
- exit();
- }
- /*--------------
- function Download();
- --------------*/
- else if($action=='download')
- {
- $model_remote_url = UPDATEHOST.'dedecms/module_'.$cfg_soft_lang.'/'.$hash.'.xml';
- $model_remote = file_get_contents($model_remote_url);
- file_put_contents($mdir.'/'.$hash.'.xml',$model_remote);
- echo "未安装 <a href='module_main.php?action=setup&hash={$hash}'><u>安装</u></a>";
- }
|