flexslider_picture.install in Picture 7
Same filename and directory in other branches
Install, update and schema hooks for the FlexSlider Picture module.
File
flexslider_picture/flexslider_picture.installView source
<?php
/**
* @file
* Install, update and schema hooks for the FlexSlider Picture module.
*/
function flexslider_picture_schema() {
$schema = array();
$schema['flexslider_picture_optionset'] = array(
'description' => 'Saves which flexslider optionsets use picture mappings and which use image styles.',
'export' => array(
'key' => 'flexslider_optionset',
'identifier' => 'flexslider_picture_optionset',
'api' => array(
'owner' => 'flexslider_picture',
'api' => 'flexslider_picture_optionset',
'minimum_version' => 1,
'current_version' => 1,
),
),
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'The internal identifier.',
'no export' => TRUE,
),
'flexslider_optionset' => array(
'description' => 'The machine-readable option set name.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'imagestyle_type' => array(
'description' => 'One of image_style or picture_mapping.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'mapping' => array(
'description' => 'The picture mapping for this optionset.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
'primary key' => array(
'id',
),
'indexes' => array(
'imagestyle_type' => array(
'imagestyle_type',
),
),
);
return $schema;
}
/**
* Implements hook_schema_alter().
*/
function flexslider_picture_schema_alter(&$schema) {
$schema['flexslider_optionset']['join']['flexslider_picture'] = array(
'table' => 'flexslider_picture_optionset',
'left_key' => 'name',
'right_key' => 'flexslider_optionset',
'callback' => 'flexslider_picture_join_callback',
'load' => array(
'imagestyle_type',
'mapping',
),
'fields' => array(
'imagestyle_type' => array(
'description' => 'One of image_style or picture_mapping.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
),
'mapping' => array(
'description' => 'The picture mapping for this optionset.',
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
),
),
);
}
Functions
Name | Description |
---|---|
flexslider_picture_schema | @file Install, update and schema hooks for the FlexSlider Picture module. |
flexslider_picture_schema_alter | Implements hook_schema_alter(). |