You are here

public function TaxonomyTermInlineEntityFormController::defaultLabels in Inline Entity Form 7

Overrides EntityInlineEntityFormController::defaultLabels().

Overrides EntityInlineEntityFormController::defaultLabels

File

includes/taxonomy_term.inline_entity_form.inc, line 13
Defines the inline entity form controller for Taxonomy terms.

Class

TaxonomyTermInlineEntityFormController
@file Defines the inline entity form controller for Taxonomy terms.

Code

public function defaultLabels() {
  $labels = array(
    'singular' => t('term'),
    'plural' => t('terms'),
  );
  return $labels;
}