diff options
author | webchick <webchick@24967.no-reply.drupal.org> | 2011-07-28 15:50:58 -0400 |
---|---|---|
committer | webchick <webchick@24967.no-reply.drupal.org> | 2011-07-28 15:50:58 -0400 |
commit | 73db412ca99f2748f7cbc9fb4b3fb7ded9a8a1b1 (patch) | |
tree | 742e721b71a47744e22d74f79c62bfaf0e28a706 /modules | |
parent | c6cc662e2df19c6c4bbfa75b6b730df64b1abce6 (diff) | |
download | brdo-73db412ca99f2748f7cbc9fb4b3fb7ded9a8a1b1.tar.gz brdo-73db412ca99f2748f7cbc9fb4b3fb7ded9a8a1b1.tar.bz2 |
Issue #1194480 by James_Stallings, jhodgdon: Fixed field_default_view() doc has problems.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/field/field.default.inc | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/field/field.default.inc b/modules/field/field.default.inc index a10d1387f..cb49bdb85 100644 --- a/modules/field/field.default.inc +++ b/modules/field/field.default.inc @@ -168,17 +168,16 @@ function field_default_prepare_view($entity_type, $entities, $field, $instances, } /** - * Builds a renderable array for field values. + * Builds a renderable array for one field on one entity instance. * * @param $entity_type * The type of $entity; e.g. 'node' or 'user'. - * @param $entities - * An array of entities being displayed, keyed by entity id. + * @param $entity + * A single object of type $entity_type. * @param $field * The field structure for the operation. - * @param $instances - * Array of instance structures for $field for each entity, keyed by entity - * id. + * @param $instance + * An array containing each field on $entity's bundle. * @param $langcode * The language associated to $items. * @param $items |