37 lines
1.6 KiB
PHP
37 lines
1.6 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* tpshop
|
||
|
* ============================================================================
|
||
|
* * 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
|
||
|
* 网站地址: http://www.tp-shop.cn
|
||
|
* ----------------------------------------------------------------------------
|
||
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
|
||
|
* 不允许对程序代码以任何形式任何目的的再发布。
|
||
|
* 采用最新Thinkphp5助手函数特性实现单字母函数M D U等简写方式
|
||
|
* ============================================================================
|
||
|
* $Author: IT宇宙人 2015-08-10 $
|
||
|
*/
|
||
|
namespace app\home\controller;
|
||
|
use think\Controller;
|
||
|
class Tperror extends Controller {
|
||
|
|
||
|
public function tp404($msg='',$url=''){
|
||
|
$msg = empty($msg) ? '您可能输入了错误的网址,或者该页面已经不存在了哦。' : $msg;
|
||
|
$this->assign('error',$msg);
|
||
|
$tpshop_config = array();
|
||
|
$tp_config = M('config')->cache(true,TPSHOP_CACHE_TIME)->select();
|
||
|
foreach($tp_config as $k => $v)
|
||
|
{
|
||
|
if($v['name'] == 'hot_keywords'){
|
||
|
$tpshop_config['hot_keywords'] = explode('|', $v['value']);
|
||
|
}
|
||
|
$tpshop_config[$v['inc_type'].'_'.$v['name']] = $v['value'];
|
||
|
}
|
||
|
$this->assign('goods_category_tree', get_goods_category_tree());
|
||
|
$brand_list = M('brand')->cache(true,TPSHOP_CACHE_TIME)->field('id,parent_cat_id,logo,is_hot')->where("parent_cat_id>0")->select();
|
||
|
$this->assign('brand_list', $brand_list);
|
||
|
$this->assign('tpshop_config', $tpshop_config);
|
||
|
return $this->fetch('public/tp404');
|
||
|
}
|
||
|
|
||
|
}
|