You are here

function registration_page_title in Entity Registration 8

Same name and namespace in other branches
  1. 8.2 registration.module \registration_page_title()
  2. 7.2 registration.module \registration_page_title()
  3. 7 registration.module \registration_page_title()

Title callback: Generate a title for a registration entity.

Callback for hook_menu() within system_themes_page().

Parameters

@registration: A fully loaded registration object.

Return value

string

1 string reference to 'registration_page_title'
registration_menu in ./registration.module
@FIXME This implementation of hook_menu() cannot be automatically converted because it contains logic (i.e., branching statements, function calls, object instantiation, etc.) You will need to convert it manually. Sorry!

File

./registration.module, line 459

Code

function registration_page_title(Registration $registration) {
  return $registration
    ->label();
}