function node_recur_permission in Node recur 7
Same name and namespace in other branches
- 7.2 node_recur.module \node_recur_permission()
Implements hook_permission().
File
- ./
node_recur.module, line 32
Code
function node_recur_permission() {
return array(
'recur own nodes' => array(
'title' => t('Recur own nodes'),
'description' => t('Can recur nodes that the user is an author of.'),
),
'recur all nodes' => array(
'title' => t('Recur all nodes'),
'description' => t('Can recur all published nodes.'),
),
);
}