function yashare_block_view in Yandex.Share 7
Same name and namespace in other branches
- 7.2 yashare.module \yashare_block_view()
Implements hook_block_view().
File
- ./
yashare.block.inc, line 22 - Yandex.Share block hooks.
Code
function yashare_block_view($delta = '') {
$block = array();
if ($delta == 'yashare') {
$block['subject'] = t('Yandex.Share');
$block['content'] = yashare_build('block');
}
return $block;
}