You are here

function fusion_labels_block_view in Fusion Accelerator 7.2

Same name and namespace in other branches
  1. 7.3 fusion_labels/fusion_labels.module \fusion_labels_block_view()

Implements hook_block_view().

File

fusion_labels/fusion_labels.module, line 29

Code

function fusion_labels_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'fusion_region_label':

      // this will be added later using hook_page_build(), to label the region where it exists
      $block = array(
        'subject' => '',
        'content' => t('This block is for debugging.'),
      );
      break;
  }
  return $block;
}