You are here

function countries_load_multiple in Countries 7.2

Same name and namespace in other branches
  1. 8 countries.module \countries_load_multiple()
  2. 7 countries.module \countries_load_multiple()

Load multiple country entities.

Return value

array An array of country entities.

File

./countries.module, line 249
Defines the field and entity information for countries.

Code

function countries_load_multiple($cids = array(), $conditions = array(), $reset = FALSE) {
  return entity_load('country', $cids, $conditions, $reset);
}