ThinkAdmin/extend/hook/FilterView.php

56 lines
1.6 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | Think.Admin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/Think.Admin
// +----------------------------------------------------------------------
namespace hook;
use think\Request;
/**
* 视图输出过滤
* Class FilterView
* @package hook
*/
class FilterView {
/**
* 行为入口
* @param $params
*/
public function run(&$params) {
$app = Request::instance()->root(true);
$replace = [
'__APP__' => $app,
'__SELF__' => Request::instance()->url(true),
'__PUBLIC__' => strpos($app, EXT) ? ltrim(dirname($app), DS) : $app,
];
$params = str_replace(array_keys($replace), array_values($replace), $params);
$this->baidu($params);
$this->cnzz($params);
}
/**
* 百度统计实现代码
* @param $params
*/
public function baidu(&$params) {
// @todo 百度统计
}
/**
* CNZZ统计实现代码
* @param $params
*/
public function cnzz(&$params) {
// @todo CNZZ统计
}
}