function supersized_field_schema in Supersized 8
Same name and namespace in other branches
- 7 supersized.install \supersized_field_schema()
Implements hook_field_schema().
File
- ./
supersized.install, line 37 - Install, update and uninstall functions for Supersized module.
Code
function supersized_field_schema($field) {
return array(
'columns' => array(
'fid' => array(
'description' => 'The {file_managed}.fid being referenced in this field.',
'type' => 'int',
'not null' => FALSE,
'unsigned' => TRUE,
),
'alt' => array(
'description' => "Alternative image text, for the image's 'alt' attribute.",
'type' => 'varchar',
'length' => 512,
'not null' => FALSE,
),
'title' => array(
'description' => "Image title text, for the image's 'title' attribute.",
'type' => 'varchar',
'length' => 1024,
'not null' => FALSE,
),
'description' => array(
'description' => 'A description of the slide.',
'type' => 'text',
'not null' => FALSE,
),
'link' => array(
'description' => "Link of slide",
'type' => 'varchar',
'length' => 2048,
'not null' => FALSE,
),
'width' => array(
'description' => 'The width of the image in pixels.',
'type' => 'int',
'unsigned' => TRUE,
),
'height' => array(
'description' => 'The height of the image in pixels.',
'type' => 'int',
'unsigned' => TRUE,
),
),
'indexes' => array(
'fid' => array(
'fid',
),
),
'foreign keys' => array(
'fid' => array(
'table' => 'file_managed',
'columns' => array(
'fid' => 'fid',
),
),
),
);
}