mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
52 lines
957 B
PHP
52 lines
957 B
PHP
<?php
|
|
|
|
namespace base\admin\service;
|
|
|
|
use think\facade\Cache;
|
|
|
|
class TriggerServiceBase
|
|
{
|
|
/**
|
|
* 更新菜单缓存.
|
|
* @param null $adminId
|
|
* @return bool
|
|
*/
|
|
public static function updateMenu($adminId = null)
|
|
{
|
|
if (empty($adminId)) {
|
|
Cache::tag('initAdmin')->clear();
|
|
} else {
|
|
Cache::delete('initAdmin_' . $adminId);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 更新节点缓存.
|
|
* @param null $adminId
|
|
* @return bool
|
|
*/
|
|
public static function updateNode($adminId = null)
|
|
{
|
|
if (empty($adminId)) {
|
|
Cache::tag('authNode')->clear();
|
|
} else {
|
|
Cache::delete('allAuthNode_' . $adminId);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 更新系统设置缓存.
|
|
* @return bool
|
|
*/
|
|
public static function updateSysconfig()
|
|
{
|
|
Cache::tag('sysconfig')->clear();
|
|
|
|
return true;
|
|
}
|
|
}
|