function helper_helper_tweak_info in Helper 7
Implements hook_helper_tweak_info().
File
- ./
helper.module, line 52
Code
function helper_helper_tweak_info() {
$info['local_action_destination'] = array(
'label' => t('Add destination query string to local actions.'),
);
$info['node_delete_tab'] = array(
'label' => t('Expose Delete on nodes as a tab.'),
'enabled' => FALSE,
);
$info['login_destination'] = array(
'label' => t('Add destination query strings to login/register links for anonymous users.'),
);
if (module_exists('comment')) {
$info['node_comment_unpublished_count'] = array(
'label' => t('Display unpublished comment count in node links.'),
);
$info['comment_hide_disabled_subject'] = array(
'label' => t('Hide comment subjects if they are disabled.'),
);
}
if (module_exists('honeypot')) {
$info['honeypot_block_anonymous_ips'] = array(
'label' => t('Block anonymous IP addresses when failing a honeypot form.'),
'enabled' => FALSE,
);
}
return $info;
}