You are here

public function BiblioContributor::label in Bibliography Module 7.2

Returns the label of the entity.

Modules may alter the label by specifying another 'label callback' using hook_entity_info_alter().

Overrides Entity::label

See also

entity_label()

File

includes/biblio.contributor.controller.inc, line 11

Class

BiblioContributor
Contributor class.

Code

public function label() {
  $label = $this
    ->defaultLabel();
  return $label;
}