You are here

function pcb_help in Permanent Cache Bin 8

Same name and namespace in other branches
  1. 8.2 pcb.module \pcb_help()

Implements hook_help().

File

./pcb.module, line 15
Module file for pcb.

Code

function pcb_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.pcb':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module allows keeping site performance in check but not deleting caches which are not Drupal caches when doing drush cr. See README in module to get more details.') . '</p>';
      return $output;
  }
}