function wordstream_permission in WordStream Keyword Tools 7
Implements hook_permission() ().
File
- ./
wordstream.module, line 62
Code
function wordstream_permission() {
return array(
'admin wordstream' => array(
'title' => t('admin wordstream'),
'description' => t('TODO Add a description for \'admin wordstream\''),
),
'access wordstream reports' => array(
'title' => t('access wordstream reports'),
'description' => t('TODO Add a description for \'access wordstream reports\''),
),
);
}