27 lines
650 B
PHP
27 lines
650 B
PHP
<?php
|
|
|
|
namespace application\home\decorator;
|
|
|
|
use framework\decorator\ifs\DecoratorIfs;
|
|
use framework\library\Register;
|
|
|
|
class Log implements DecoratorIfs {
|
|
|
|
public function before() {
|
|
// TODO: Implement before() method.
|
|
}
|
|
|
|
/**
|
|
* @param array $data
|
|
* @throws \framework\library\exception\BaseException
|
|
*/
|
|
public function after($data) {
|
|
// TODO: Implement after() method.
|
|
$router = Register::get('Router');
|
|
$message = '当前访问:';
|
|
$message .= $router->module . '.';
|
|
$message .= $router->ctrl . '.';
|
|
$message .= $router->action;
|
|
echo $message;
|
|
}
|
|
} |