You are here

function fancy_login_footer in Fancy Login 6.2

Same name and namespace in other branches
  1. 6 fancy_login.module \fancy_login_footer()

Implementation of hook_footer()

File

./fancy_login.module, line 103

Code

function fancy_login_footer() {
  if (user_is_anonymous()) {
    return theme('fancy_login_modal', drupal_get_form('fancy_login_user_login_block'));
  }
}