function flag_lists_block_info in Flag Lists 7
Same name and namespace in other branches
- 7.3 flag_lists.module \flag_lists_block_info()
Implements hook_block_info();
File
- ./
flag_lists.module, line 694 - The Flag Lists module.
Code
function flag_lists_block_info() {
return array(
'flag_lists' => array(
'info' => t('Lists'),
'cache' => DRUPAL_NO_CACHE,
),
'flag_lists_list' => array(
'info' => t('My lists'),
'cache' => DRUPAL_NO_CACHE,
),
);
}