
| Current Path : /var/www/html/12park_old/web/modules/contrib/securepages/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/12park_old/web/modules/contrib/securepages/securepages.module |
<?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;
}
}