You are here

function display_cache_permission in Display Cache 7

Implements hook_permission().

File

./display_cache.module, line 79
Module file for Display Cache.

Code

function display_cache_permission() {
  return array(
    'administer display cache' => array(
      'title' => t('Administer Display Cache'),
      'description' => t('Permission to administer display cache settings and clear display cache caches from the ui.'),
    ),
  );
}