You are here

function twitter_profile_widget_block_view in Twitter Profile Widget 7

Implements hook_block_view().

File

./twitter_profile_widget.module, line 57

Code

function twitter_profile_widget_block_view($delta = '') {
  $block = array(
    'subject' => '<ins class = "tpw_title">' . t('Twitter Updates') . '</ins>',
    'content' => twitter_profile_widget_start(),
  );
  return $block;
}