diff options
Diffstat (limited to 'modules/field/field.crud.inc')
-rw-r--r-- | modules/field/field.crud.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc index ed4452c46..21e000cf2 100644 --- a/modules/field/field.crud.inc +++ b/modules/field/field.crud.inc @@ -700,13 +700,16 @@ function field_create_instance($instance) { * @param $instance * An associative array representing an instance structure. The required * keys and values are: - * field_name: The name of an existing field. - * bundle: The bundle this field belongs to. + * - entity_type: The type of the entity the field is attached to. + * - bundle: The bundle this field belongs to. + * - field_name: The name of an existing field. * Read-only_id properties are assigned automatically. Any other * properties specified in $instance overwrite the existing values for * the instance. + * * @throw * FieldException + * * @see field_create_instance() */ function field_update_instance($instance) { |