mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Menu.php
This commit is contained in:
parent
12d9889e96
commit
a38478eb58
@ -159,4 +159,52 @@ class Menu extends Controller
|
||||
$this->_delete($this->table);
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param bool $result
|
||||
*/
|
||||
protected function _add_form_result(bool $result)
|
||||
{
|
||||
if ($result) {
|
||||
$id = $this->app->db->name($this->table)->getLastInsID();
|
||||
sysoplog('系统菜单管理', "添加系统菜单[{$id}]成功");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表单结果处理
|
||||
* @param boolean $result
|
||||
*/
|
||||
protected function _edit_form_result(bool $result)
|
||||
{
|
||||
if ($result) {
|
||||
$id = input('id') ?: 0;
|
||||
sysoplog('系统菜单管理', "修改系统菜单[{$id}]成功");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 状态结果处理
|
||||
* @param boolean $result
|
||||
*/
|
||||
protected function _state_save_result(bool $result)
|
||||
{
|
||||
if ($result) {
|
||||
[$id, $state] = [input('id'), input('status')];
|
||||
sysoplog('系统菜单管理', ($state ? '激活' : '禁用') . "系统菜单[{$id}]成功");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除结果处理
|
||||
* @param boolean $result
|
||||
*/
|
||||
protected function _remove_delete_result(bool $result)
|
||||
{
|
||||
if ($result) {
|
||||
$id = input('id') ?: 0;
|
||||
sysoplog('系统菜单管理', "删除系统菜单[{$id}]成功");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user