You are here

legal.install in Legal 7

Installation and update functions for the Legal module.

File

legal.install
View source
<?php

/**
 * @file
 * Installation and update functions for the Legal module.
 */

/**
 * Implements hook_schema().
 */
function legal_schema() {
  $schema['legal_conditions'] = array(
    'fields' => array(
      'tc_id' => array(
        'type' => 'serial',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'disp-width' => 10,
      ),
      'version' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'revision' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'language' => array(
        'description' => t("TODO."),
        'type' => 'varchar',
        'length' => '12',
        'not null' => TRUE,
        'default' => '',
      ),
      'conditions' => array(
        'type' => 'text',
        'size' => 'big',
        'not null' => TRUE,
      ),
      'date' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'extras' => array(
        'type' => 'text',
      ),
      'changes' => array(
        'type' => 'text',
      ),
      'format' => array(
        'type' => 'varchar',
        'not null' => FALSE,
        'length' => 255,
      ),
    ),
    'primary key' => array(
      'tc_id',
    ),
  );
  $schema['legal_accepted'] = array(
    'fields' => array(
      'legal_id' => array(
        'type' => 'serial',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'disp-width' => 10,
      ),
      'version' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'revision' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'language' => array(
        'description' => t("TODO."),
        'type' => 'varchar',
        'length' => '12',
        'not null' => TRUE,
        'default' => '',
      ),
      'uid' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 10,
      ),
      'accepted' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 11,
      ),
      'tc_id' => array(
        'type' => 'int',
        'unsigned' => FALSE,
        'not null' => TRUE,
        'default' => 0,
        'disp-width' => 10,
      ),
    ),
    'indexes' => array(
      'uid' => array(
        'uid',
      ),
    ),
    'primary key' => array(
      'legal_id',
    ),
  );
  return $schema;
}

/**
 * Implements hook_uninstall().
 */
function legal_uninstall() {
  variable_del('legal_display');
  variable_del('legal_user_profile_display');
  variable_del('legal_accept_every_login');
  variable_del('legal_link_target');
}

/**
 * Implements hook_update_last_removed().
 */
function legal_update_last_removed() {
  return 6003;
}

/**
 * Clear the menu cache.
 */
function legal_update_7100() {
  menu_rebuild();
}

/**
 * Add tc_id to legal_accepted
 */
function legal_update_7101() {
  $table = 'legal_accepted';
  $spec = array(
    'type' => 'int',
    'unsigned' => FALSE,
    'not null' => TRUE,
    'default' => 0,
    'disp-width' => 10,
  );
  db_add_field($table, 'tc_id', $spec);
}

/**
 * Adds the {legal_conditions}.format column.
 */
function legal_update_7102() {
  if (!db_field_exists('legal_conditions', 'format')) {
    db_add_field('legal_conditions', 'format', array(
      'type' => 'varchar',
      'not null' => FALSE,
      'length' => 255,
    ));
  }
}

/**
 * Set format column of existing T&Cs to Plain Text, or to default if Plain Text doesn't exist.
 */
function legal_update_7103() {
  $formats = filter_formats();
  if (isset($formats['plain_text'])) {
    $format = 'plain_text';
  }
  else {
    $format = filter_fallback_format();
  }
  db_update('legal_conditions')
    ->fields(array(
    'format' => $format,
  ))
    ->condition('format', NULL)
    ->execute();
}

Functions

Namesort descending Description
legal_schema Implements hook_schema().
legal_uninstall Implements hook_uninstall().
legal_update_7100 Clear the menu cache.
legal_update_7101 Add tc_id to legal_accepted
legal_update_7102 Adds the {legal_conditions}.format column.
legal_update_7103 Set format column of existing T&Cs to Plain Text, or to default if Plain Text doesn't exist.
legal_update_last_removed Implements hook_update_last_removed().