| Versions | |
|---|---|
| 4.7 – 6 | node_block($op = 'list', $delta = 0) |
Implementation of hook_block().
modules/
<?php
function node_block($op = 'list', $delta = 0) {
if ($op == 'list') {
$blocks[0]['info'] = t('Syndicate');
return $blocks;
}
else if ($op == 'view') {
$block['subject'] = t('Syndicate');
$block['content'] = theme('feed_icon', url('rss.xml'));
return $block;
}
}
?>