diff --git a/features.api.php b/features.api.php index 10915e1..043864f 100644 --- a/features.api.php +++ b/features.api.php @@ -293,6 +293,8 @@ function hook_features_pipe_alter(&$pipe, $data, $export) { */ /** + * Deprecated as of 7.x-2.0. + * * Alter the default fields right before they are cached into the database. * * @param &$fields @@ -302,6 +304,24 @@ function hook_field_default_fields_alter(&$fields) { } /** + * Alter the base fields right before they are cached into the database. + * + * @param &$fields + * By reference. The fields that have been declared by another feature. + */ +function hook_field_default_field_bases_alter(&$fields) { +} + +/** + * Alter the field instances right before they are cached into the database. + * + * @param &$fields + * By reference. The fields that have been declared by another feature. + */ +function hook_field_default_field_instances_alter(&$fields) { +} + +/** * Alter the default fieldgroup groups right before they are cached into the * database. *