function node_registration_label in Node registration 7
Label callback for the Node registration type.
1 string reference to 'node_registration_label'
- node_registration_entity_info in includes/
node_registration.entity.inc - Implements hook_entity_info().
File
- includes/
node_registration.entity.inc, line 107 - Entity hooks and callbacks for registrations.
Code
function node_registration_label($registration) {
$label = $registration->email;
drupal_alter('node_registration_label', $label, $registration);
return $label;
}