You are here

delta.install in Delta 7.2

Same filename and directory in other branches
  1. 6 delta.install
  2. 7.3 delta.install
  3. 7 delta.install

Contains install, update, and uninstall functions for Skinr.

File

delta.install
View source
<?php

/**
 * @file
 * Contains install, update, and uninstall functions for Skinr.
 */

/**
 * Implementation of hook_schema.
 */
function delta_schema() {
  $schema['delta_theme_settings'] = array(
    'description' => t('Stores theme-settings templates that allow overriding the theme settings used based on various contexts.'),
    'fields' => array(
      'tid' => array(
        'description' => 'The unique ID of the theme settings template',
        'type' => 'serial',
        'length' => 5,
        'not null' => TRUE,
      ),
      'name' => array(
        'description' => 'The friendly name of this theme settings template.',
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ),
      'system_name' => array(
        'description' => 'The system name of this theme settings template.',
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ),
      'theme' => array(
        'description' => 'The theme for which this theme settings template is relevant.',
        'type' => 'varchar',
        'length' => 128,
        'not null' => TRUE,
        'default' => '',
      ),
      'data' => array(
        'description' => t('Serialized data which is a copy of the theme settings array stored in the system table based on these overrides'),
        'type' => 'text',
        'size' => 'big',
        'not null' => TRUE,
        'serialize' => TRUE,
      ),
    ),
    'primary key' => array(
      'tid',
    ),
    'indexes' => array(
      'theme' => array(
        'theme',
      ),
      'system_name' => array(
        'system_name',
      ),
      'tid' => array(
        'tid',
      ),
    ),
  );
  return $schema;
}

/**
 * Implementation of hook_uninstall().
 */
function delta_uninstall() {

  // Remove all skinr variables.
  db_delete('variable')
    ->condition('name', 'delta_%', 'LIKE')
    ->execute();
}

Functions

Namesort descending Description
delta_schema Implementation of hook_schema.
delta_uninstall Implementation of hook_uninstall().