1.去除后台版权
phpcms\phpcms\languages\zh-cn\admin.lang.php php语言文字使用//注释后修改
09行 $LANG['admin_site_title'] = 'PHPCMS - 后台管理中心'; //后台网页 title部分显示文字
11行 $LANG['phpcms_title'] = 'PHPCMS内容管理系统';//后台首页里面显示的部分信息
60行 $LANG['main_product_team'] = 'PHPCMS系统开发团队';//后台首页里面显示的部分信息
此处是文字影响不大
phpcms\phpcms\languages\zh-cn \system.lang.php
09行 $LANG['website_manage'] = 'phpcms V9 - 后台管理中心'; //不知道是哪里显示的
93行 $LANG['copyright'] = 'CopyRight 2006-2014 酷溜网(北京)科技有限公司 <a href="http://www.phpcms.cn" target="_blank">PHPCMS TEAM</a> '; //版权正主
phpcms\phpcms\modules\admin\templates\main.tpl.php
去掉更新
方法非常简单,只要找到文件:/phpcms/libs/classes/update.class.php 文件:
$this->update_url = 'http://update.v9.phpcms.cn/index.php';
$this->http = pc_base::load_sys_class('http','',1);
$this->uuid = $this->check_uuid();
第二种方法 替换链接 函数返回空
phpcmsmodulesadminindex.php
218-220
$product_copyright = '酷溜网(北京)科技有限公司';
$architecture = '王参加';
$programmer = '王参加、王官庆、郝国新、张二强、陈学旺、郝川、赵宏伟';
$designer = '张二强';
_wwwphpcmsmodulesadmintemplatesindex.tpl.php
/**
$("#help").slideUp("slow");
var str = '';
$.getJSON("http://v9.help.phpcms.cn/api.php?jsoncallback=?",{op:'help',targetUrl: targetUrl},
function(data){
if(data!=null) {
$("#help").slideDown("slow");
$.each(data, function(i,item){
str += '<a href="'+item.url+'" target="_blank">'+item.title+'</a>';
});
str += '<a class="panel-delete" href="javascript:;" onclick="$(\'#help\').slideUp(\'slow\')"></a>';
$('#help').html(str);
}
});
$("#help").data('time', 1);**/
帮助提示?
发表评论 取消回复