function hook_field_create_instance

7.x field.api.php hook_field_create_instance($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 invocation of hook_field_create_instance()
field_create_instance in drupal-7.x/modules/field/field.crud.inc
Creates an instance of a field, binding it to a bundle.

File

drupal-7.x/modules/field/field.api.php, line 2443

Code

function hook_field_create_instance($instance) {
  // @todo Needs function body.
}