function units_unit_load_multiple in Units of Measurement 7.2
Same name and namespace in other branches
- 7 units.module \units_unit_load_multiple()
Load multiple entities of entity type 'units_unit'.
2 calls to units_unit_load_multiple()
- units_unit_by_measure_load_multiple in ./
units.module - Load all units of the supplied measure.
- units_unit_load in ./
units.module - Load an entity of entity type 'units_unit' by its ID.
File
- ./
units.module, line 264 - Provide API for managing and converting units of measurement.
Code
function units_unit_load_multiple($umids = FALSE, $conditions = array(), $reset = FALSE) {
return entity_load('units_unit', $umids, $conditions, $reset);
}