You are here

function securepages_help in Secure Pages 8

Implements hook_help().

File

./securepages.module, line 12
Code for Secure Pages module.

Code

function securepages_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.securepages':
      $help_text = '<p>' . t('This module provides Set which pages are always going to be used in secure mode (SSL) Warning: Do not enable this module without configuring your web server to handle SSL with this installation of Drupal.') . '</p>';
      return $help_text;
  }
}