function author_pane_theme in Author Pane 6
Same name and namespace in other branches
- 8.3 author_pane.module \author_pane_theme()
- 6.2 author_pane.module \author_pane_theme()
- 7.2 author_pane.module \author_pane_theme()
Implementation of hook_theme().
File
- ./
author_pane.module, line 13 - Gathers information from user related contrib modules into one template.
Code
function author_pane_theme() {
author_pane_include('author-pane.inc');
$items['author_pane'] = array(
'template' => 'author-pane',
'arguments' => array(
'account' => NULL,
'image_path' => NULL,
'template_suggestion' => NULL,
),
);
$items['author_pane_block_user_picture'] = array(
'arguments' => array(
'account' => NULL,
),
);
return $items;
}