function hook_field_create_instance

Act on a field instance being created.

This hook is invoked from field_create_instance() after the instance record is saved, so it cannot be used to modify the instance itself.

Parameters

$instance: The instance just created.

Related topics

1 function implements hook_field_create_instance()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

views_field_create_instance in drupal/core/modules/views/views.module
Implements hook_field_create_instance.
1 invocation of hook_field_create_instance()
field_create_instance in drupal/core/modules/field/field.crud.inc
Creates an instance of a field, binding it to a bundle.

File

drupal/core/modules/field/field.api.php, line 2095

Code

function hook_field_create_instance($instance) {

  // @todo Needs function body.
}