You are here

function js_injector_schema in JS injector 7

Same name and namespace in other branches
  1. 6.2 js_injector.install \js_injector_schema()
  2. 6 js_injector.install \js_injector_schema()
  3. 7.2 js_injector.install \js_injector_schema()

Implements hook_schema().

File

./js_injector.install, line 18
Install, update and uninstall functions for the js_injector module.

Code

function js_injector_schema() {
  $schema['js_injector_rule'] = array(
    'fields' => array(
      'crid' => array(
        'description' => 'The primary identifier for the JS injection rule',
        'type' => 'serial',
        'unsigned' => TRUE,
        'not null' => TRUE,
      ),
      'title' => array(
        'description' => 'The descriptive title of the JS injection rule',
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
      ),
      'rule_type' => array(
        'description' => 'The type of rule to use when determining if the JS should be injected',
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
      'rule_conditions' => array(
        'description' => 'The data to evaluate when determining if the JS should be injected',
        'type' => 'text',
        'not null' => TRUE,
      ),
      'media' => array(
        'description' => 'The media type of the JS file (screen, print, etc.)',
        'type' => 'varchar',
        'length' => 255,
        'not null' => TRUE,
      ),
      'preprocess' => array(
        'description' => 'Whether the JS file should be included by the JS preprocessor',
        'type' => 'int',
        'unsigned' => TRUE,
        'not null' => TRUE,
        'default' => 0,
      ),
    ),
    'primary key' => array(
      'crid',
    ),
  );
  return $schema;
}