You are here

function qpcache_help in QueryPath 7.2

Same name and namespace in other branches
  1. 6 qpcache/qpcache.module \qpcache_help()
  2. 7.3 qpcache/qpcache.module \qpcache_help()

Implementation of hook_help().

File

qpcache/qpcache.module, line 30
The main file for qpcache.

Code

function qpcache_help($path, $args) {
  if ($path == 'admin/help#qpcache') {
    return t('QPCache is a caching stystem for large text docments with complex keys.
    This module provides a development API. It has QueryPath bindings as well as general caching bindings.');
  }
}