You are here

function log_load_multiple in Log entity 7

Load multiple logs based on certain conditions.

Parameters

array|bool $ids: An array of log ids.

array $conditions: An array of log load conditions.

bool $reset: Boolean: whether or not to reset the entity cache.

Return value

array Returns an array of logs.

1 call to log_load_multiple()
log_load in ./log.module
Load a log.

File

./log.module, line 999
Log - A general purpose record keeping system.

Code

function log_load_multiple($ids = FALSE, $conditions = array(), $reset = FALSE) {
  return entity_load('log', $ids, $conditions, $reset);
}