modX.hasPermission
Последнее обновление Dec 21st, 2019 | История страницы | Улучшить эту страницу | Сообщить о проблеме
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn moremodX::hasPermission¶
Возвращает true, если пользователь имеет указанное разрешение политики.
Синтаксис¶
API Doc: modX::hasPermission()
boolean hasPermission (string|array $pm)
Пример¶
Запретить пользователю доступ, если у него нет разрешения edit_chunk
в загруженных политиках.
$pm = 'edit_chunk';
if (!$modx->hasPermission($pm)) {
die('Access Denied!');
}
Также возможно проверить, есть ли у пользователя несколько разрешений, таких как edit_chunk
и edit_template
. Подобно;
$pm = array('edit_chunk' => true, 'edit_template' => true);
if (!$modx->hasPermission($pm)) {
die ('Access Denied!');
}
Смотрите также¶
Support the team building MODX with a monthly donation.
The budget raised through OpenCollective is transparent, including payouts, and any contributor can apply to be paid for their work on MODX.
Backers
Budget
$306 per month—let's make that $500!
Learn more