pagepreview.install in Page Preview 7
Same filename and directory in other branches
File
pagepreview.installView source
<?php
/**
* Implementation of hook_schema().
*/
function pagepreview_schema() {
$schema['cache_pagepreview'] = drupal_get_schema_unprocessed('system', 'cache');
return $schema;
}
/**
* Create a dedicated cache table.
*/
function pagepreview_update_7100() {
$schema = pagepreview_schema();
db_create_table('cache_pagepreview', $schema['cache_pagepreview']);
}
Functions
Name![]() |
Description |
---|---|
pagepreview_schema | Implementation of hook_schema(). |
pagepreview_update_7100 | Create a dedicated cache table. |