18 lines
485 B
PHP
18 lines
485 B
PHP
<?php
|
|
|
|
use support\View;
|
|
|
|
/**
|
|
* Here is your custom functions.
|
|
*/
|
|
|
|
function msg($title = '', $content = '', $link = '/', $link_text = '返回首页')
|
|
{
|
|
View::assign(["nickname" => session('nickname', "未登录")]);
|
|
View::assign([
|
|
"header" => view('common/header')->rawBody(),
|
|
"footer" => view('common/footer')->rawBody()
|
|
]);
|
|
|
|
return view('common/msg', ['msg_title' => $title, 'msg_content' => $content, 'link' => $link, 'link_text' => $link_text]);
|
|
} |