You are here

function user_relationship_elaborations_user_relationships_ui_table_header_alter in User Relationships 7

Implements hook_user_relationships_ui_table_header_alter().

File

user_relationship_elaborations/user_relationship_elaborations.module, line 104
User Relationships Elaborations feature @author Jeff Smick (creator) @author Darren Ferguson http://drupal.org/user/70179

Code

function user_relationship_elaborations_user_relationships_ui_table_header_alter(&$header) {
  $insert_index = array_search(t('Relationship'), $header) + 1;
  $header = array_merge(array_slice($header, 0, $insert_index), array(
    t('Comments'),
  ), array_slice($header, $insert_index));
}