function livechat_permission in LiveChat 7
Implements hook_permission().
File
- ./
livechat.module, line 64 - LiveChat module.
Code
function livechat_permission() {
return array(
'administer livechat' => array(
'title' => t('Administer LiveChat'),
'description' => t('Administer the LiveChat settings.'),
),
'use livechat' => array(
'title' => t('Use LiveChat'),
'description' => t('Access the LiveChat widget.'),
),
);
}