You are here

function facebook_publication_load_multiple in Facebook Autopost 7

Load multiple Facebook publications based on certain conditions.

Parameters

array $fbpids: An array of Facebook publication IDs.

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

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

Return value

array An array of Facebook publication objects, indexed by pid.

See also

entity_load()

facebook_publication_load()

2 calls to facebook_publication_load_multiple()
facebook_publication_load in fb_autopost_entity/fb_autopost_entity.module
Fetch a Facebook publication object.
fb_autopost_entity_facebook_publication_type_delete in fb_autopost_entity/fb_autopost_entity.module
Implements hook_facebook_publication_type_delete().

File

fb_autopost_entity/fb_autopost_entity.module, line 231
Module implementation file

Code

function facebook_publication_load_multiple($fbpids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('facebook_publication', $fbpids, $conditions, $reset);
}