You are here

function user_relationships_ui_footer in User Relationships 6

Implementation of hook_footer().

File

user_relationships_ui/user_relationships_ui.module, line 426
UI components of user_relationships @author Jeff Smick (creator) @author Alex Karshakevich (maintainer) http://drupal.org/user/183217 @author Darren Ferguson (contributor) http://drupal.org/user/70179

Code

function user_relationships_ui_footer($main = 0) {

  // This is the div we are utilizing for the form popups for confirmation.
  // This should only be presented if the ajax option is checked.
  if (variable_get('user_relationships_enable_ajax_popups', FALSE)) {
    return '<div id="user_relationships_popup_form" class="user_relationships_ui_popup_form"></div>';
  }
}