function command_buttons_load_multiple in Command Buttons 7
Load multiple OA buttons.
See also
entity_load_multiple().
4 calls to command_buttons_load_multiple()
- ButtonController::delete in includes/
ButtonController.class.php - Deletes the entities then rebuilds defaults if needed.
- command_buttons_load in ./
command_buttons.module - Button entity loader.
- command_buttons_machine_name_load in ./
command_buttons.module - Load a collection of button entities based on their machine name.
- command_buttons_update_7107 in ./
command_buttons.install - Delete duplicate add_file buttons.
File
- ./
command_buttons.module, line 261
Code
function command_buttons_load_multiple($ids, $conditions = array(), $reset = FALSE) {
return entity_load('command_button', $ids, $conditions, $reset);
}