You are here

function glazed_helper_block_view in Glazed Theme Helper 7

Implements hook_block_view().

File

./glazed_helper.module, line 78

Code

function glazed_helper_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'full_screen_search':
      if (user_access('search content')) {
        $block['content'] = _glazed_helper_search_block_content();
        return $block;
      }
      break;
  }
}