You are here

function pcb_redis_help in Permanent Cache Bin 8.2

Same name and namespace in other branches
  1. 8 modules/pcb_redis/pcb_redis.module \pcb_redis_help()

Implements hook_help().

File

modules/pcb_redis/pcb_redis.module, line 13
Module file for pcb_redis.

Code

function pcb_redis_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.pcb_redis':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This module further enhances ability of pcb by allowing use of Redis as cache backend.') . '</p>';
      return $output;
  }
}