You are here

function group_page_title in Group 7

Title callback: Returns the group title.

See also

GroupUiController::hook_menu()

1 string reference to 'group_page_title'
GroupUIController::hook_menu in classes/group.ui_controller.inc
Provides definitions for implementing hook_menu().

File

./group.router.inc, line 115
Contains all router functions for the Group module.

Code

function group_page_title(Group $group) {
  return $group
    ->label();
}