You are here

public function NodeInlineEntityFormController::defaultLabels in Inline Entity Form 7

Overrides EntityInlineEntityFormController::defaultLabels().

Overrides EntityInlineEntityFormController::defaultLabels

File

includes/node.inline_entity_form.inc, line 13
Defines the inline entity form controller for Nodes.

Class

NodeInlineEntityFormController
@file Defines the inline entity form controller for Nodes.

Code

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