function services_client_permission in Services Client 7.2
Same name and namespace in other branches
- 7 services_client.module \services_client_permission()
Implementation of hook_permission
Return value
array
File
- ./
services_client.module, line 89
Code
function services_client_permission() {
return array(
'administer services client' => array(
'title' => t('Administer the services client'),
'description' => t('Manage services client connections, hooks and mappings'),
'restricted' => TRUE,
),
'skip sending entity' => array(
'title' => t('Allow user to skip sending entity saved via form'),
'description' => t('Adds skip checkbox to each entity form'),
),
);
}