securepages.module in Secure Pages 8
Same filename and directory in other branches
Code for Secure Pages module.
File
securepages.moduleView source
<?php
/**
* @file
* Code for Secure Pages module.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
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;
}
}
Functions
Name | Description |
---|---|
securepages_help | Implements hook_help(). |