You are here

function badbehavior_footer in Bad Behavior 6.2

Implements hook_page_build().

Adds a hidden Project Honey Pot QuickLink link to the footer of every page.

File

./badbehavior.module, line 263
Integrates Bad Behavior with Drupal

Code

function badbehavior_footer() {
  if (variable_get('badbehavior_httpbl_quicklink', '')) {
    return '<span style="display: none !important; opacity: 0.0;"><a href="' . variable_get('badbehavior_httpbl_quicklink', '') . '" rel="nofollow">' . variable_get('badbehavior_httpbl_quicklinktext', 'Customize This') . '</a></span>' . "\n";
  }
}