You are here

function youtubechannel_block_view in YoutubeChannel 7

Same name and namespace in other branches
  1. 7.2 youtubechannel.module \youtubechannel_block_view()

Implements hook_block_view().

File

./youtubechannel.module, line 63
module file for youtubechannel.

Code

function youtubechannel_block_view($delta = '') {
  $block = array();
  if ($delta == 0) {
    $block['subject'] = t('Youtube Channel');
    $block['content'] = youtubechannel_getview();
    return $block;
  }
}