loadCollection ( array  $conditions,
  $order_field = NULL,
  $order_type = 'ASC' 
)

Load many objects.

Parámetros
array$conditionsAssociative array with field names as keys. There are two special conditions for those objects having the created [time] field:
  • createdsince: the smaller created time to return.
  • createduntil: the largest created time to return.
string$order_fieldA field to order by.
string$order_typeDESC: Descending, ASC Ascending.
Devuelve
array Objects with attribute $key = $value ordered by $order field.
339  {
340  throw new Exception('Not implemented');
341  }