You are here

function hosting_ssl_feature_enable_callback in Hosting 7.3

Same name and namespace in other branches
  1. 7.4 web_server/ssl/hosting_ssl.module \hosting_ssl_feature_enable_callback()

Callback function to execute on enabling this module's feature.

@see: hosting_example_hosting_feature().

1 string reference to 'hosting_ssl_feature_enable_callback'
hosting_ssl_hosting_feature in web_server/ssl/hosting.feature.ssl.inc
Implements hook_hosting_feature().

File

web_server/ssl/hosting_ssl.module, line 195
Hook implementations for the Hosting SSL module.

Code

function hosting_ssl_feature_enable_callback() {
  drupal_set_message(t("Please make sure you have enabled SSL support in your webserver, e.g. by enabling mod_ssl in Apache."));
  drupal_set_message(t("To start using SSL please edit the desired server node within Aegir to set in from e.g. 'apache' to 'apache_ssl'."));
}