TOP-framework/application/home/decorator/Log.php

27 lines
641 B
PHP

<?php
namespace application\home\decorator;
use system\decorator\ifs\DecoratorIfs;
use system\library\Register;
class Log implements DecoratorIfs {
public function before() {
// TODO: Implement before() method.
}
/**
* @param array $data
* @throws \system\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;
}
}