本文整理汇总了PHP中Rights::isHave方法的典型用法代码示例。如果您正苦于以下问题:PHP Rights::isHave方法的具体用法?PHP Rights::isHave怎么用?PHP Rights::isHave使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Rights
的用法示例。
在下文中一共展示了Rights::isHave方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
function execute()
{
$action = Request::post('contact_action');
if (!$action) {
return;
}
$model = new contactsUsersModel();
if ($action == 'create') {
if (sizeof($model->where(array('login' => Request::post('login')))->fetchAll()) > 0) {
return;
}
$data = array('name' => Request::post('name'), 'login' => Request::post('login'), 'date' => time(), 'block' => false);
if (Request::post('password')) {
$data['password'] = md5(Request::post('password'));
}
$model->insert($data);
} else {
if ($action == 'update') {
if (sizeof($model->where(array('login' => Request::post('login')))->fetchAll()) <= 0) {
return;
}
$data = array('name' => Request::post('name'));
if (Request::post('password')) {
$data['password'] = md5(Request::post('password'));
}
$model->where(array('login' => Request::post('login')))->update($data);
}
}
if (Rights::isHave('contacts', 'add_right')) {
$this->setRights(Request::post('login'), Request::post('rights') ? Request::post('rights') : array());
}
}