You are here

function newsletter_template_load_multiple in Newsletter 7.2

Load multiple templates by IDs.

Parameters

$template_ids: An array of template IDs.

$reset: A boolean indicating that the internal cache should be reset.

Return value

An array of template objects, indexed by template_id.

See also

entity_load()

newsletter_template_load()

1 call to newsletter_template_load_multiple()
newsletter_template_load in modules/template/newsletter_template.module
Fetch a template object.

File

modules/template/newsletter_template.module, line 276
Module for the Newsletter Template Entity

Code

function newsletter_template_load_multiple($template_ids = array(), $reset = FALSE) {
  return entity_load('newsletter_template', $template_ids, array(), $reset);
}