You are here

function popup_announcement_block_view in Pop-up announcement 7

Implements hook_block_view().

File

./popup_announcement.module, line 166
Primarily Drupal hooks and custom functions for creating block with pop-up announcement.

Code

function popup_announcement_block_view($delta) {
  if (strstr($delta, 'popup_announcement_')) {
    $bid = substr($delta, 19);

    // string function - just faster.
    $block['content'] = '';
    $block['content'] = popup_announcement_create_block($bid);
  }
  return $block;
}