session_proxy.install in Session Proxy 7
Session Proxy schema.
File
session_proxy.installView 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
Name | Description |
---|---|
session_proxy_schema | Implements hook_schema(). |