formatter_field.install in Formatter Field 7
File
formatter_field.installView source
<?php
/**
* @file
*/
/**
* Implements hook_field_schema().
*/
function formatter_field_field_schema($field) {
return array(
'columns' => array(
'type' => array(
'type' => 'varchar',
'length' => '64',
'not null' => FALSE,
),
'settings' => array(
'type' => 'text',
'size' => 'big',
'not null' => FALSE,
'serialize' => TRUE,
),
),
);
}
Functions
Name | Description |
---|---|
formatter_field_field_schema | Implements hook_field_schema(). |