function dfp_permission in Doubleclick for Publishers (DFP) 7.2
Same name and namespace in other branches
- 7 dfp.module \dfp_permission()
Implements hook_permission().
File
- ./
dfp.module, line 22
Code
function dfp_permission() {
return array(
'administer DFP' => array(
'title' => t('Administer Doubleclick for Publisher ads'),
'description' => t('Users can create, edit, and delete Doubleclick for Publishers (dfp) ad tags and configure how and when they should be displayed.'),
'restrict access' => TRUE,
),
);
}