You are here

memcache_status.module in Memcache Status 6

Same filename and directory in other branches
  1. 8 memcache_status.module
  2. 7 memcache_status.module

Memcache Status module hooks.

File

memcache_status.module
View source
<?php

/**
 * @file
 * Memcache Status module hooks.
 */

/**
 * Implements hook_menu().
 */
function memcache_status_menu() {
  $items['admin/reports/status/memcache'] = array(
    'title' => 'Memcache',
    'page callback' => 'memcache_status_memcache',
    'access arguments' => array(
      'access memcache status',
    ),
    'type' => MENU_NORMAL_ITEM,
    'file' => 'memcache_status.admin.inc',
  );
  return $items;
}

/**
 * Implements hook_perm().
 */
function memcache_status_perm() {
  return array(
    'access memcache status',
  );
}

Functions

Namesort descending Description
memcache_status_menu Implements hook_menu().
memcache_status_perm Implements hook_perm().