You are here

function config_pages_load_multiple in Config Pages 7

Load multiple config_pagess based on certain conditions.

Parameters

$config_pages_ids: An array of config_pages IDs.

$conditions: An array of conditions to match against the {config_pages} table.

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

Return value

An array of config_pages objects, indexed by config_pages_id.

See also

entity_load()

config_pages_load()

1 call to config_pages_load_multiple()
config_pages_load in ./config_pages.module
Fetch a config_pages object. Make sure that the wildcard you choose in the config_pages entity definition fits the function name here.

File

./config_pages.module, line 397
This module is based on Model module (https://drupal.org/project/model) and most of the comments left untouched but have entity types renamed. Suuport for features added.

Code

function config_pages_load_multiple($config_pages_ids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('config_pages', $config_pages_ids, $conditions, $reset);
}