You are here

pcb_memcache.module in Permanent Cache Bin 8

Same filename and directory in other branches
  1. 8.2 modules/pcb_memcache/pcb_memcache.module

Module file for pcb_memcache.

File

modules/pcb_memcache/pcb_memcache.module
View source
<?php

/**
 * @file
 * Module file for pcb_memcache.
 */
use Drupal\Core\Routing\RouteMatchInterface;

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

Functions

Namesort descending Description
pcb_memcache_help Implements hook_help().