? .cache ? .settings Index: includes/common.inc =================================================================== RCS file: /cvs/drupal/drupal/includes/common.inc,v retrieving revision 1.1071 diff -u -p -r1.1071 common.inc --- includes/common.inc 27 Dec 2009 15:23:49 -0000 1.1071 +++ includes/common.inc 31 Dec 2009 14:57:44 -0000 @@ -6437,6 +6437,46 @@ function entity_get_controller($entity_t } /** + * Invoke hook_entity_prepare_view(). + * + * If adding a new entity similar to nodes, comments or users, you should + * invoke this function during the ENTITY_build_content() or + * ENTITY_build_multiple() phases of rendering to allow other modules to alter + * the objects during this phase. This is needed for situations where + * information needs to be loaded outside of ENTITY_load() - particularly + * when loading entities into one another - i.e. a user object into a node, due + * to the potential for unwanted side-effects such as caching and infinite + * recursion. By convention, entity_prepare_view() is called after + * field_attach_prepare_view() to allow entity level hooks to act on content + * loaded by field API. + * @see hook_entity_prepare_view() + * + * @param $entity_type + * The type of entity, i.e. 'node', 'user'. + * @param $entities + * The entity objects which are being prepared for view, keyed by object ID. + */ +function entity_prepare_view($entity_type, $entities) { + // To ensure hooks are only run once per entity, check for an + // entity_view_prepared flag and only process items without it. + // @todo: resolve this more generally for both entity and field level hooks. + $prepare = array(); + foreach ($entities as $id => $entity) { + if (empty($entity->entity_view_prepared)) { + // Add this entity to the items to be prepared. + $prepare[$id] = $entity; + + // Mark this item as prepared. + $entity->entity_view_prepared = TRUE; + } + } + + if (!empty($prepare)) { + module_invoke_all('entity_prepare_view', $prepare, $entity_type); + } +} + +/** * Performs one or more XML-RPC request(s). * * @param $url Index: modules/comment/comment.module =================================================================== RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v retrieving revision 1.822 diff -u -p -r1.822 comment.module --- modules/comment/comment.module 26 Dec 2009 16:50:08 -0000 1.822 +++ modules/comment/comment.module 31 Dec 2009 15:14:54 -0000 @@ -856,6 +856,7 @@ function comment_build_content($comment, // Build fields content. field_attach_prepare_view('comment', array($comment->cid => $comment), $view_mode); + entity_prepare_view('comment', array($comment->cid => $comment)); $comment->content += field_attach_view('comment', $comment, $view_mode); if (empty($comment->in_preview)) { @@ -947,6 +948,7 @@ function comment_links($comment, $node) */ function comment_view_multiple($comments, $node, $view_mode = 'full', $weight = 0) { field_attach_prepare_view('comment', $comments, $view_mode); + entity_prepare_view('comment', $comments); $build = array( '#sorted' => TRUE, Index: modules/node/node.module =================================================================== RCS file: /cvs/drupal/drupal/modules/node/node.module,v retrieving revision 1.1193 diff -u -p -r1.1193 node.module --- modules/node/node.module 31 Dec 2009 08:26:59 -0000 1.1193 +++ modules/node/node.module 31 Dec 2009 15:13:51 -0000 @@ -1240,6 +1240,7 @@ function node_build_content($node, $view // 'prepare_view' step. An internal flag prevents the operation from running // twice. field_attach_prepare_view('node', array($node->nid => $node), $view_mode); + entity_prepare_view('node', array($node->nid => $node)); $node->content += field_attach_view('node', $node, $view_mode); // Always display a read more link on teasers because we have no way @@ -2154,6 +2155,7 @@ function node_feed($nids = FALSE, $chann */ function node_view_multiple($nodes, $view_mode = 'teaser', $weight = 0) { field_attach_prepare_view('node', $nodes, $view_mode); + entity_prepare_view('node', $nodes); $build = array(); foreach ($nodes as $node) { $build['nodes'][$node->nid] = node_view($node, $view_mode); Index: modules/rdf/rdf.module =================================================================== RCS file: /cvs/drupal/drupal/modules/rdf/rdf.module,v retrieving revision 1.16 diff -u -p -r1.16 rdf.module --- modules/rdf/rdf.module 31 Dec 2009 08:26:59 -0000 1.16 +++ modules/rdf/rdf.module 31 Dec 2009 14:57:44 -0000 @@ -595,6 +595,25 @@ function rdf_field_attach_view_alter(&$o } /** + * Implements hook_entity_prepare_view(). + */ +function rdf_entity_prepare_view($entities, $entity_type) { + $uids = array(); + // In the case of both nodes and comments, the full $account object for the + // author is needed in rdf_preprocess_username(), however this is not + // available from node_load() or comment_load(). If the users are loaded + // for the first time in rdf_preprocess_username() this will issue an + // individual user_load() for each account, so pre-load the users needed + // here where we can take advantage of user_load_multiple(). + if ($entity_type == 'node' || $entity_type == 'comment') { + foreach ($entities as $entity) { + $uids[$entity->uid] = $entity->uid; + } + user_load_multiple($uids); + } +} + +/** * Wraps a template variable in an HTML element with the desired attributes. * * This is called by rdf_process() shortly before the theme system renders Index: modules/system/system.api.php =================================================================== RCS file: /cvs/drupal/drupal/modules/system/system.api.php,v retrieving revision 1.114 diff -u -p -r1.114 system.api.php --- modules/system/system.api.php 31 Dec 2009 13:22:35 -0000 1.114 +++ modules/system/system.api.php 31 Dec 2009 14:57:44 -0000 @@ -264,6 +264,28 @@ function hook_admin_paths_alter(&$paths) } /** + * Act on entities as they are being prepared for view. + * + * Allows you to operate on multiple entities as they are being prepared for + * view. Only use this if attaching the data during the entity_load() phase + * is not appropriate, for example when attaching other 'entity' style objects. + * + * @param $entities + * The entities keyed by entity ID. + * @param $type + * The type of entities being loaded (i.e. node, user, comment). + */ +function hook_entity_prepare_view($entities, $type) { + // Load a specific node into the user object for later theming. + if ($type == 'user') { + $nodes = mymodule_get_user_nodes(array_keys($entities)); + foreach ($entities as $uid => $entity) { + $entity->user_node = $nodes[$uid]; + } + } +} + +/** * Perform periodic actions. * * This hook will only be called if cron.php is run (e.g. by crontab). Index: modules/taxonomy/taxonomy.pages.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.pages.inc,v retrieving revision 1.46 diff -u -p -r1.46 taxonomy.pages.inc --- modules/taxonomy/taxonomy.pages.inc 21 Dec 2009 13:47:32 -0000 1.46 +++ modules/taxonomy/taxonomy.pages.inc 31 Dec 2009 14:57:45 -0000 @@ -31,6 +31,7 @@ function taxonomy_term_page($term) { drupal_add_css(drupal_get_path('module', 'taxonomy') . '/taxonomy.css'); field_attach_prepare_view('taxonomy_term', array($term->tid => $term), 'full'); + entity_prepare_view('taxonomy_term', array($term->tid => $term)); $build = array(); $build += field_attach_view('taxonomy_term', $term); $build['term_description'] = array( Index: modules/user/user.module =================================================================== RCS file: /cvs/drupal/drupal/modules/user/user.module,v retrieving revision 1.1095 diff -u -p -r1.1095 user.module --- modules/user/user.module 26 Dec 2009 16:50:09 -0000 1.1095 +++ modules/user/user.module 31 Dec 2009 15:15:27 -0000 @@ -2161,6 +2161,7 @@ function user_build_content($account, $v // Build fields content. field_attach_prepare_view('user', array($account->uid => $account), $view_mode); + entity_prepare_view('user', array($account->uid => $account)); $account->content += field_attach_view('user', $account, $view_mode); // Populate $account->content with a render() array.