function hosting_ssl_permission in Hosting 7.4
Same name and namespace in other branches
- 7.3 web_server/ssl/hosting_ssl.module \hosting_ssl_permission()
Implements hook_permission().
File
- web_server/
ssl/ hosting_ssl.module, line 36 - Hook implementations for the Hosting SSL module.
Code
function hosting_ssl_permission() {
return array(
'create ssl certificate' => array(
'title' => t('create ssl certificate'),
),
);
}