icon_field.install in Icon API 7
File
modules/icon_field/icon_field.installView source
<?php
/**
* @file
* icon_field.install
*/
/**
* Implements hook_field_schema().
*/
function icon_field_field_schema($field) {
return array(
'columns' => array(
'bundle' => array(
'type' => 'varchar',
'length' => 64,
'not null' => FALSE,
),
'icon' => array(
'type' => 'varchar',
'length' => 64,
'not null' => FALSE,
),
),
);
}
Functions
Name | Description |
---|---|
icon_field_field_schema | Implements hook_field_schema(). |