You are here

function popup_announcement_block_view_alter in Pop-up announcement 7

Implements hook_block_view_alter().

File

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

Code

function popup_announcement_block_view_alter(&$data, $block) {
  if (strstr($block->delta, 'popup_announcement_')) {
    $block->title = '';
  }
}