function plus1_block_list in Plus 1 6.2
Function for plus1_block(op = 'list').
1 call to plus1_block_list()
- plus1_block in ./
plus1.module - Implements hook_block();
File
- ./
plus1.module, line 520 - A simple +1 voting widget module.
Code
function plus1_block_list() {
return array(
'most_votes' => array(
'info' => t('Plus1 Most Votes'),
'cache' => BLOCK_NO_CACHE,
),
'vote_for_this' => array(
'info' => t('Plus1 Vote for This Post'),
'cache' => BLOCK_NO_CACHE,
),
);
}