function plus1_theme in Plus 1 6
Same name and namespace in other branches
- 6.2 plus1.module \plus1_theme()
- 7 plus1.module \plus1_theme()
Implementation of hook_theme().
File
- ./
plus1.module, line 194 - A simple +1 voting widget module.
Code
function plus1_theme() {
return array(
'plus1_widget' => array(
'arguments' => array(
'nid',
'score',
'is_author',
'voted',
),
),
);
}