function fieldable_panels_panes_load_multiple in Fieldable Panels Panes (FPP) 7
Load multiple fieldable panel panes.
See also
entity_load_multiple()
4 calls to fieldable_panels_panes_load_multiple()
- fieldable_panels_panes_block_info in ./
fieldable_panels_panes.module - Implements hook_block_info().
- fieldable_panels_panes_build_content_type_info in plugins/
content_types/ fieldable_panels_pane.inc - Returns a list of all reusable FPP entities of a given bundle.
- fieldable_panels_panes_load in ./
fieldable_panels_panes.module - Panel pane entity loader.
- PanelsPaneController::delete in includes/
PanelsPaneController.class.php - Delete a list of FPPs.
File
- ./
fieldable_panels_panes.module, line 1077 - Maintains an entity that appears as panel pane content.
Code
function fieldable_panels_panes_load_multiple($ids, $conditions = array(), $reset = FALSE) {
return entity_load('fieldable_panels_pane', $ids, $conditions, $reset);
}