You are here

function userloginbar_block_view in UserLoginBar 7

Implementation of hook_block_view().

File

./userloginbar.module, line 36

Code

function userloginbar_block_view($delta = '') {
  $block = array();
  switch ($delta) {
    case 'userloginbar':
      $block['content'] = array(
        '#theme' => 'userloginbar',
      );
      break;
  }
  return $block;
}