function social_user_menu_local_tasks_alter in Open Social 8
Same name and namespace in other branches
- 8.9 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.2 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.3 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.4 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.5 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.6 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.7 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 8.8 modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 10.3.x modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 10.0.x modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 10.1.x modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
- 10.2.x modules/social_features/social_user/social_user.module \social_user_menu_local_tasks_alter()
Implements hook_menu_local_tasks_alter().
File
- modules/
social_features/ social_user/ social_user.module, line 302 - The social user module alterations.
Code
function social_user_menu_local_tasks_alter(&$data, $route_name) {
// Change the default 'View' tab title.
if (isset($data['tabs'][0]['entity.user.canonical']['#link'])) {
$data['tabs'][0]['entity.user.canonical']['#link']['title'] = t('Stream');
}
// Remove Edit tab. Edit will always go through Floating Edit Button.
if (isset($data['tabs'][0]['entity.user.edit_form'])) {
unset($data['tabs'][0]['entity.user.edit_form']);
}
// Keep consistent sorting of 2nd navbar items.
if (isset($data['tabs'][0]['social_user.events'])) {
$data['tabs'][0]['social_user.events']['#weight'] = -2;
}
if (isset($data['tabs'][0]['social_user.topics'])) {
$data['tabs'][0]['social_user.topics']['#weight'] = -1;
}
}