You are here

bueditor_plus.install in BUEditor Plus 7.2

Same filename and directory in other branches
  1. 7 bueditor_plus.install

Install, update and uninstall functions for the bueditor_plus module.

File

bueditor_plus.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the bueditor_plus module.
 */

/**
 * Implements hook_schema().
 */
function bueditor_plus_schema() {
  $schema['bueditor_plus_profiles'] = array(
    'description' => 'ID of the Profile',
    'fields' => array(
      'pid' => array(
        'description' => 'Profile ID',
        'type' => 'serial',
        'not null' => TRUE,
      ),
      'name' => array(
        'description' => 'Profile Name',
        'type' => 'varchar',
        'length' => '64',
        'not null' => TRUE,
      ),
      'data' => array(
        'description' => 'Profile Data',
        'type' => 'blob',
        'size' => 'big',
        'not null' => TRUE,
      ),
      'global' => array(
        'description' => 'Boolean indicating if this is the global profile',
        'type' => 'int',
        'not null' => TRUE,
        'default' => 0,
      ),
    ),
    'primary key' => array(
      'pid',
    ),
  );
  return $schema;
}

/**
 * Create the global field.
 */
function bueditor_plus_update_7001() {

  // Check if the global field exists and if not go ahead and add it.
  if (!db_field_exists('bueditor_plus_profiles', 'global')) {
    db_add_field('bueditor_plus_profiles', 'global', array(
      'type' => 'int',
      'unsigned' => TRUE,
      'not null' => TRUE,
      'default' => 0,
    ));
  }
}

Functions

Namesort descending Description
bueditor_plus_schema Implements hook_schema().
bueditor_plus_update_7001 Create the global field.