You are here

function gridbuilder_load_all in Grid builder 8

Same name and namespace in other branches
  1. 7 gridbuilder.module \gridbuilder_load_all()

API function to get all grids on the site.

Return value

array List of Drupal\gridbuilder\Grid instances keyed by id.

File

./gridbuilder.module, line 129
Simple grid builder tool.

Code

function gridbuilder_load_all() {
  return entity_load_multiple('grid');
}