You are here

function theme_blockify_node in Blockify 6

Returns the rendered node details.

This block can be used to render details for the current node and author object outside of the node container.

1 theme call to theme_blockify_node()
blockify_get_content in ./blockify.module
Provides individual block content.

File

./blockify.theme.inc, line 99

Code

function theme_blockify_node($user, $node) {
  $items = array(
    'username' => theme('username', $user),
    'submitted' => theme('node_submitted', $node),
  );
  return theme('item_list', $items, t('Node details'));
}