mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
19 lines
461 B
PHP
19 lines
461 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_mdl_role_acts extends dbeav_model{
|
||
|
||
function get_user_roles($user_id)
|
||
{
|
||
return $this->getList("*",array("user_id"=>$user_id));
|
||
}
|
||
|
||
function clearuserpermissions($user_id)
|
||
{
|
||
$this->db->exec("update sdb_ome_role_acts set `disabled` = 'true' where `user_id` = ".intval($user_id));
|
||
}
|
||
}
|
||
?>
|