function content_field_instance_read in Content Construction Kit (CCK) 5
Same name and namespace in other branches
- 6.3 includes/content.crud.inc \content_field_instance_read()
- 6 includes/content.crud.inc \content_field_instance_read()
- 6.2 includes/content.crud.inc \content_field_instance_read()
Load a field instance.
Parameters
$properties: An array of properties to use in selecting a field instance. Valid keys:
- 'type_name' - The name of the content type in which the instance exists.
- 'field_name' - The name of the field whose instance is to be loaded.
Return value
The field instance array.
File
- ./
content_crud.inc, line 287 - Create/Read/Update/Delete functions for CCK-defined object types.
Code
function content_field_instance_read($properties) {
// TODO
}