function drupalmonitor_connector_permission in Drupalmonitor 7
Implements hook_permission().
File
- ./
drupalmonitor_connector.module, line 37 - This file is the core of drupalmonitor_connector
Code
function drupalmonitor_connector_permission() {
return array(
'administer drupalmonitor' => array(
'title' => t('View Drupalmonitor settings page'),
'description' => t('Allow user to change settings on the Drupalmonitor settings page.'),
),
'access drupalmonitor api' => array(
'title' => t('Access the Drupalmonitor API'),
'description' => t('Allow Drupalmonitor.com crawler to access /drupalmonitor.'),
),
);
}