You are here

function redhen_note_title in RedHen CRM 7

Title callback for hook_menu().

Parameters

RedhenNote $note: A loaded note object.

1 string reference to 'redhen_note_title'
redhen_note_menu in modules/redhen_note/redhen_note.module
Implements hook_menu().

File

modules/redhen_note/redhen_note.module, line 292
Redhen Notes main module

Code

function redhen_note_title(RedhenNote $note) {
  return $note
    ->label();
}