You are here

function plus1_theme in Plus 1 6

Same name and namespace in other branches
  1. 6.2 plus1.module \plus1_theme()
  2. 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',
      ),
    ),
  );
}