You are here

function hosting_https_permission in Aegir HTTPS 7.3

Implements hook_permission().

@todo Move this to the 'manual' certificate service implementation.

File

./hosting_https.module, line 28
Hook implementations for the Hosting HTTPS module.

Code

function hosting_https_permission() {
  return array(
    'manage site HTTPS settings' => array(
      'title' => t('Manage site HTTPS settings.'),
    ),
  );
}