shopex 4.85 底部去除版权方法 ()

直接路径在当前模板\core\include_v5\smartyplugins\function.footer文件.

 

里面是乱码直接换成以下代码即可:

<?php

/*********************/

/* */

/* Version : 5.1.0 */

/* Author : RM */

/* Comment : 071223 */

/* */

/*********************/


function tpl_function_footer( $params, &$smarty )

{

global $system;

$system =& $system;

$output =& $system->loadModel( "system/frontend" );

$tmpdata = $system->getConf( "im.setting" );

$data = unserialize( $tmpdata );

$theme_dir = $system->base_url( )."themes/".$output->theme;

echo $smarty->_fetch_compile_include( "shop:common/footer.html", array(

"theme_dir" => $theme_dir,

"certtext" => "<a href=\"http://www.miibeian.gov.cn/ \" target=\"blank\">".$system->getConf( "site.certtext" )."</a>",

"mini_cart" => $system->getConf( "site.buy.target" ) == 3,

"preview_theme" => $system->in_preview_theme,

"im_setting" => $data,

"system_url" => $system->base_url( ),

"stateString" => "cron=".urlencode( $system->request['action']['controller'].":".$system->request['action']['method'] )."&p=".urlencode( $system->request['action']['args'][0] )

) );

if ( constant( "SHOP_DEVELOPER" ) )

{

$html .= $system->_debugger['log'];

}

if ( $system->getConf( "shopex.wss.show" ) )

{

$wssjs = $system->getConf( "shopex.wss.js" );

}

if ( $system->getConf( "certificate.channel.status" ) )

{

$channel = $system->getConf( "certificate.channel.service" )."<a href=\"".$system->getConf( "certificate.channel.url" )."\" target=\"_blank\">".$system->getConf( "certificate.channel.name" );

$channel .= "</a>";

}

if ( $system->getConf( "site.shopex_certify" ) == 0 )

{

$ref = $_SERVER['HTTP_HOST'];

$check = md5( $ref."" );

$str = urlencode( $system->getConf( "certificate.str" ) );

if ( !$str )

{

$str = urlencode( __( "无" ) );

}

if ( constant( "SAAS_MODE" ) )

{

$versionStr = "";

}

else

{

$versionStr = "v".$system->_app_version;

}

if ( $system->use_gzip )

{

$gzip = "enabled";

}

else

{

$gzip = "disabled";

}

$themeFoot = "<div class=\"themefoot\">".$system->getConf( "system.foot_edit" )."</div>";

$PoweredStr = "<div style=\"font-family:Verdana;line-height:20px!important;height:auto!important;font-size:11px!important;text-align:center;overflow:none!important;text-indent:0!important;\">";

if ( $system->getConf( "certificate.auth_type" ) == "commercial" )

{

$greencard = $system->getConf( "store.greencard" );

if ( !isset( $greencard ) || $greencard )

{

$PoweredStr .= "<a href='http://service.shopex.cn/show/certinfo.php?certi_id=".$system->getConf( "certificate.id" )."&url=".rawurlencode( $system->base_url( ) )."' target='_blank'><img src='statics/bottom-authorize.gif'></a><br>";

}

}

//$PoweredStr .= "<a href=\"" target=\"_blank\" style=\"color:#666;text-decoration:none;cursor:pointer\">";

//$PoweredStr .= "Powered by <b style=\"color:#5c719e\">Shop</b><b style=\"color:#f39000\">Ex</b>";

//$PoweredStr .= "</a>";

//$PoweredStr .= "<span style=\"font-size:9px;\"> ".$versionStr."</span>";

//$PoweredStr .= "<span style=\"color:#999;display:none\"> |Gzip ".$gzip."</span> ";

if ( $channel )

{

$PoweredStr .= "<br/><span>".$channel."</span> ";

}

if ( $system->getConf( "site.certtext" ) )

{

$PoweredStr .= "<a href=\"http://www.miibeian.gov.cn/\" target=\"blank\" style=\"color:#666;text-decoration:none;cursor:pointer;display:block;\" class=\"textcenter\">".$system->getConf( "site.certtext" )."</a>";

}

if ( $wssjs )

{

$PoweredStr .= "<span style=\"display:none\">".$wssjs."</span>";

}

$PoweredStr .= "</div>";

if ( $system->getConf( "site.rsc_rpc" ) && defined( "RSC_RPC" ) && ( $certificate = $system->getConf( "certificate.id" ) ) )

{

$p = array( );

foreach ( $runtime['path'] as $path )

{

$p[] = $path['title'];

}

$pageinfo['path'] = implode( $p, "/" );

$p = "";

foreach ( $pageinfo as $k => $v )

{

$p .= "&_".$k."=".urlencode( $v );

}

$p .= "&_time=".time( );

$RSC_RPC_STR = "<script>\r\n withBroswerStore(function(store){\r\n \r\n store.get(\"jsapi\",function(data){\r\n \r\n var script = document.createElement(\"script\");\r\n var _src = \"".RSC_RPC."/jsapi?certi_id=".$certificate.$p."&pt=".urlencode( $smarty->pagedata['request']['action']['controller'] ).":".urlencode( $smarty->pagedata['request']['action']['method'] )."&app=shopex(".$system->_app_version.")&uid=\"+(encodeURIComponent(Cookie.get(\"S[MEMBER]\") || \"\").split(\"-\")[0])+\"&ref=\"+encodeURIComponent(document.referrer)+\"&sz=\"+JSON.encode(window.getSize())+\"&hs=\"+encodeURIComponent(location.hash.slice(1))+\"&rt=\"+\$time();\r\n \r\n if(data){\r\n try{\r\n data = JSON.decode(data);\r\n }catch(e){}\r\n if(\$type(data)==\"object\"){\r\n _src +=\"&\"+Hash.toQueryString(data); \r\n }else if(\$type(data)==\"string\"){\r\n _src +=\"&\"+data; \r\n }\r\n }\r\n \r\n script.setAttribute(\"src\",_src);\r\n document.head.appendChild(script);\r\n document.head.removeChild(script);\r\n \r\n });\r\n \r\n \r\n });\r\n </script>";

$PoweredStr .= $RSC_RPC_STR;

}

}

return $html.$themeFoot.$PoweredStr;

}


?>

转载时请加上链接(zpcoolstart的专栏

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值