You are here

function user_relationships_ui_page_alter in User Relationships 7

Implements hook_footer().

File

user_relationships_ui/user_relationships_ui.module, line 253
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_page_alter(&$page) {

  // This is the div we are utilizing for the form popups for confirmation.
  $page['page_bottom']['user_relationships'] = array(
    '#markup' => '<div id="user_relationships_popup_form" class="user_relationships_ui_popup_form"></div>',
  );
}