You are here

function blockgroup_load in Block Group 7.2

Same name and namespace in other branches
  1. 7 blockgroup.module \blockgroup_load()

Return the block group given its machine_name.

2 calls to blockgroup_load()
blockgroup_block_configure in ./blockgroup.module
Implements hook_block_configure().
blockgroup_features_rebuild in ./blockgroup.features.inc
Implements [component]_features_rebuild().

File

./blockgroup.module, line 496
Add block groups to block configuration page

Code

function blockgroup_load($delta) {
  return block_load('blockgroup', $delta);
}