You are here

session_proxy.install in Session Proxy 7

Session Proxy schema.

File

session_proxy.install
View source
<?php

/**
 * @file
 * Session Proxy schema.
 */

/**
 * Implements hook_schema().
 */
function session_proxy_schema() {
  $schema = array();
  $schema['cache_sessions'] = drupal_get_schema_unprocessed('system', 'cache');
  return $schema;
}

Functions

Namesort descending Description
session_proxy_schema Implements hook_schema().