You are here

function hosting_ssl_permission in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 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'),
    ),
  );
}