SmsRecipient/app/functions.php
mao a4e5648147 feat: 添加短信应用基本功能- 新增应用管理、短信中心、用户登录注册等功能页面
- 实现应用创建、删除、短信搜索、分页等功能
- 添加用户登录、注册、修改密码等账户管理功能
- 新增通用消息显示模板
2025-04-30 18:00:08 +08:00

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]);
}