name, $relationship->plural_name, ($relationship->is_oneway ? ($relationship->is_reciprocal ? t('reciprocal') : t('one way')) : t('mutual')), ($relationship->requires_approval ? t('yes') : t('no')), ($relationship->expires_val ? t('@expires_val', array('@expires_val' => format_plural($relationship->expires_val, '1 day', '@count days'))) : t('Never')), l(t('edit'), "admin/user/relationships/{$relationship->rtid}/edit") .' | '. l(t('delete'), "admin/user/relationships/{$relationship->rtid}/delete") ); } foreach (module_implements('user_relationships_page_alter') as $module) { $function = "{$module}_user_relationships_page_alter"; $function('types list', $page, $table); } if (!sizeof($table['rows'])) { $table['rows'][] = array(array('data' => t('No relationships available.'), 'colspan' => sizeof($table['headers']))); } $page['relationships'] = array( '#type' => 'fieldset', '#title' => t('Relationship Types'), '#weight' => 0 ); $page['relationships']['list'] = array( '#value' => theme('table', $table['headers'], $table['rows']) ); return drupal_render($page); } /** * Main list of relationships for a specified user */ function user_relationships_page($account = NULL, $rtid = NULL) { if (!$account) { global $user; $account = $user; } return theme('user_relationships', $account, $rtid); } /** * List of pending requests from other users */ function user_relationships_pending_requests_page($account = NULL) { // Check that the uid is valid, not the anonymous user, and the user exists if (!$account) { global $user; $account = $user; } return theme('user_relationships_pending_requests', $account); }