1.20.x layout.install | layout_schema() |
Implements hook_schema().
File
- modules/
layout/ layout.install, line 10 - Install, update and uninstall functions for the Layout module.
Code
function layout_schema() {
$schema['cache_layout_path'] = backdrop_get_schema_unprocessed('system', 'cache');
$schema['cache_layout_path']['description'] = 'Cache table to store which layouts are active at a given path.';
return $schema;
}