function redirect_load_multiple in Redirect 7
Same name and namespace in other branches
- 7.2 redirect.module \redirect_load_multiple()
Load multiple URL redirects from the database.
Parameters
$rids: An array of redirect IDs.
$conditions: An array of conditions on the {redirect} table in the form 'field' => $value.
$reset: Whether to reset the redirect_load_multiple cache.
Return value
An array of URL redirect objects indexed by redirect IDs.
Related topics
6 calls to redirect_load_multiple()
- redirect_change_status_multiple in ./
redirect.module - Change the status of multiple URL redirects.
- redirect_delete_multiple in ./
redirect.module - Delete multiple URL redirects.
- redirect_field_attach_form in ./
redirect.module - Implements hook_field_attach_form().
- redirect_list_form in ./
redirect.admin.inc - @file Administrative page callbacks for the redirect module.
- redirect_list_form_operations_confirm_form in ./
redirect.admin.inc
File
- ./
redirect.module, line 679
Code
function redirect_load_multiple($rids = array(), array $conditions = array(), $reset = FALSE) {
return entity_load('redirect', $rids, $conditions, $reset);
}