function dynamic_background_user_permission in Dynamic Background 7.2
Same name and namespace in other branches
- 7 modules/dynamic_background_user/dynamic_background_user.module \dynamic_background_user_permission()
Implements hook_perm().
File
- modules/
dynamic_background_user/ dynamic_background_user.module, line 11 - This module provides user with the option to select a dynamic background image for each user.
Code
function dynamic_background_user_permission() {
return array(
'dynamic background user image selection' => array(
'title' => t('Allow selection of backgrounds in user profile'),
),
);
}