modX.hasPermission
Last updated Nov 27th, 2019 | Page history | Improve this page | Report an issue
modX::hasPermission¶
Returns true if user has the specified policy permission.
Syntax¶
API Doc: modX::hasPermission()
boolean hasPermission (string|array $pm)
Example¶
Deny the user access if they don't have the permission 'edit_chunk' in their loaded Policies.
$pm = 'edit_chunk';
if (!$modx->hasPermission($pm)) {
die('Access Denied!');
}
It's also possible to check if the user has multiple permissions, like 'edit_chunk' and 'edit_template'. Like;
$pm = array('edit_chunk' => true, 'edit_template' => true);
if (!$modx->hasPermission($pm)) {
die ('Access Denied!');
}