function like_and_dislike_theme in Like & Dislike 7
Same name and namespace in other branches
- 8 like_and_dislike.module \like_and_dislike_theme()
Implementing hook_theme().
Defines the themes of the like and dislike buttons and counts
File
- ./
like_and_dislike.module, line 81
Code
function like_and_dislike_theme() {
return array(
'like' => array(
'template' => 'templates/like',
),
'dislike' => array(
'template' => 'templates/dislike',
),
);
}