| Versionen | |
|---|---|
| drupal7 | hook_field_storage_write($obj_type, $object, $op, $skip_fields) |
Write field data for an object.
$obj_type The entity type of object, such as 'node' or 'user'.
$object The object on which to operate.
$op FIELD_STORAGE_UPDATE when updating an existing object, FIELD_STORAGE_INSERT when inserting a new object.
$skip_fields An array keyed by names of fields whose data has already been written and therefore should not be written again. The values associated to these keys are not specified.
modules/
<?php
function hook_field_storage_write($obj_type, $object, $op, $skip_fields) { }
?>
Kommentare
Kommentar hinzufügen