You are here

protected function RedirectController::attachLoad in Redirect 7.2

Same name and namespace in other branches
  1. 7 redirect.controller.inc \RedirectController::attachLoad()

Attaches data to entities upon loading.

This will attach fields, if the entity is fieldable. It calls hook_entity_load() for modules which need to add data to all entities. It also calls hook_TYPE_load() on the loaded entities. For example hook_node_load() or hook_user_load(). If your hook_TYPE_load() expects special parameters apart from the queried entities, you can set $this->hookLoadArguments prior to calling the method. See NodeController::attachLoad() for an example.

Parameters

$queried_entities: Associative array of query results, keyed on the entity ID.

$revision_id: ID of the revision that was loaded, or FALSE if the most current revision was loaded.

Overrides DrupalDefaultEntityController::attachLoad

File

./redirect.controller.inc, line 12

Class

RedirectController
Controller class for redirects.

Code

protected function attachLoad(&$redirects, $revision_id = FALSE) {

  // Unserialize the URL option fields.
  foreach ($redirects as $key => $redirect) {
    $redirects[$key]->source_options = unserialize($redirect->source_options);
    $redirects[$key]->redirect_options = unserialize($redirect->redirect_options);
  }
  parent::attachLoad($redirects, $revision_id);
}