function nodeblock_permission in Nodeblock 7
Implements hook_permission().
File
- ./
nodeblock.module, line 11 - Enables use of specified node types as custom blocks.
Code
function nodeblock_permission() {
return array(
'maintain nodeblock' => array(
'title' => t('Maintain Nodeblock on a node'),
'description' => t('Allows users to maintain Nodeblock settings per node.'),
),
);
}