function hook_field_storage_info_alter

Perform alterations on Field API storage types.

Parameters

$info: An array with information on storage types returned by hook_field_storage_info() implementations.

Related topics

File

modules/field/field.api.php, line 1683

Code

function hook_field_storage_info_alter(&$info) {
    // Add a setting to a storage type.
    $info['field_sql_storage']['settings'] += array(
        'mymodule_additional_setting' => 'default value',
    );
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.