function pcp_permission in Profile Complete Percent 7
Implements hook_permission().
File
- ./
pcp.module, line 24 - Allows users with valid permissions to tag profile fields (core fields or Profile2 fields) for a users profile to be considered complete.
Code
function pcp_permission() {
return array(
'administer pcp' => array(
'title' => t('Administer Profile Complete Percentages'),
'description' => t('Allows a user to configure which fields to be considered complete.'),
),
);
}