Newer Version Available
$Permission
A global merge field type to use when referencing information about the current user’s
custom permission access. Use permission merge fields to reference information about the user’s
current access to any of your organization’s custom permissions.
Usage
- Select the field type: $Permission.
- Select a merge field such as $Permission.customPermissionName.
Example
To have a pageblock only appear for users that have the custom permission seeExecutiveData,
use the
following.
1<apex:pageBlock rendered="{!$Permission.canSeeExecutiveData}">
2 <!-- Executive Data Here -->
3</apex:pageBlock>