You are here

function blockgroup_pullup in Block Group 7.2

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

A pre_render callback for pulling in elements from another part of the page.

2 string references to 'blockgroup_pullup'
blockgroup_element_info in ./blockgroup.module
Implements hook_element_info().
blockgroup_page_alter in ./blockgroup.module
Implements hook_page_alter().

File

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

Code

function blockgroup_pullup($build) {
  $key = $build['#key'];
  return !empty($build['#base'][$key]) ? $build['#base'][$key] : array();
}