function simpleads_permission in SimpleAds 7
Same name and namespace in other branches
- 7.2 simpleads.module \simpleads_permission()
Implements hook_permission().
File
- ./
simpleads.module, line 130
Code
function simpleads_permission() {
return array(
'access ad statistics' => array(
'title' => t('Access ad statistics'),
),
'access ad node' => array(
'title' => t('Access ad node'),
'description' => t('Please use this permission to allow editors access ad node'),
),
'count ad impressions' => array(
'title' => t('Count ad impressions'),
),
'count ad clicks' => array(
'title' => t('Count ad clicks'),
),
);
}