uc_dropdown_attributes.install in Dropdown Attributes 6
Same filename and directory in other branches
Install, update and uninstall functions for the uc_dropdown_attributes module.
File
uc_dropdown_attributes.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the
* uc_dropdown_attributes module.
*/
/**
* Implement hook_install().
*/
function uc_dropdown_attributes_install() {
drupal_install_schema('uc_dropdown_attributes');
}
/**
* Implement hook_uninstall().
*/
function uc_dropdown_attributes_uninstall() {
drupal_uninstall_schema('uc_dropdown_attributes');
}
/**
* Implement hook_schema().
*/
function uc_dropdown_attributes_schema() {
$schema['uc_dropdown_attributes'] = array(
'description' => 'Stores attributes that are displayed depending on the value of another attribute.',
'fields' => array(
'nid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Node id of product',
),
'aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of child',
),
'parent_aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of parent',
),
'parent_values' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'normal',
'description' => 'Values of the parent attribute that trigger the dependent attribute',
),
'required' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => 'Whether the dependent attribute is optional (0) or required (1)',
),
),
'primary key' => array(
'nid',
'aid',
),
);
$schema['uc_dropdown_classes'] = array(
'description' => 'Stores attributes that are displayed depending on the value of another attribute.',
'fields' => array(
'pcid' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'description' => 'Product class id',
),
'aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of child',
),
'parent_aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of parent',
),
'parent_values' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'normal',
'description' => 'Values of the parent attribute that trigger the dependent attribute',
),
'required' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => 'Whether the dependent attribute is optional (0) or required (1)',
),
),
'primary key' => array(
'pcid',
'aid',
),
);
return $schema;
}
/**
* Adds the {uc_dropdown_classes} table.
*/
function uc_dropdown_attributes_update_6000() {
$ret = array();
$schema['uc_dropdown_classes'] = array(
'description' => 'Stores attributes that are displayed depending on the value of another attribute.',
'fields' => array(
'pcid' => array(
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'description' => 'Product class id',
),
'aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of child',
),
'parent_aid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => 'Attribute id of parent',
),
'parent_values' => array(
'type' => 'text',
'not null' => TRUE,
'size' => 'normal',
'description' => 'Values of the parent attribute that trigger the dependent attribute',
),
'required' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => 'Whether the dependent attribute is optional (0) or required (1)',
),
),
'primary key' => array(
'pcid',
'aid',
),
);
db_create_table($ret, 'uc_dropdown_classes', $schema['uc_dropdown_classes']);
return $ret;
}
Functions
Name | Description |
---|---|
uc_dropdown_attributes_install | Implement hook_install(). |
uc_dropdown_attributes_schema | Implement hook_schema(). |
uc_dropdown_attributes_uninstall | Implement hook_uninstall(). |
uc_dropdown_attributes_update_6000 | Adds the {uc_dropdown_classes} table. |