You are here

pagepreview.install in Page Preview 7

Same filename and directory in other branches
  1. 6 pagepreview.install

File

pagepreview.install
View 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

Namesort descending Description
pagepreview_schema Implementation of hook_schema().
pagepreview_update_7100 Create a dedicated cache table.