function admin_menu_schema in Administration menu 6.3
Same name and namespace in other branches
- 7.3 admin_menu.install \admin_menu_schema()
Implementation of hook_schema().
File
- ./
admin_menu.install, line 11 - Install, update, and uninstall functions for the admin menu module.
Code
function admin_menu_schema() {
$schema['cache_admin_menu'] = drupal_get_schema_unprocessed('system', 'cache');
$schema['cache_admin_menu']['description'] = 'Cache table for Administration menu to store client-side caching hashes.';
return $schema;
}