You are here

function redhen_org_org_title in RedHen CRM 7

Title callback for hook_menu().

Parameters

string $org: A loaded org object.

Return value

string Org title.

1 string reference to 'redhen_org_org_title'
redhen_org_menu in modules/redhen_org/redhen_org.module
Implements hook_menu().

File

modules/redhen_org/redhen_org.module, line 623

Code

function redhen_org_org_title(RedhenOrg $org) {
  return $org
    ->label();
}