public function FieldablePanelsPaneInlineEntityFormController::defaultLabels in Fieldable Panels Panes (FPP) 7
Returns the default entity type labels.
Overrides EntityInlineEntityFormController::defaultLabels
File
- includes/FieldablePanelsPaneInlineEntityFormController.class.php, line 16 
- Defines the inline entity form controller for Nodes.
Class
- FieldablePanelsPaneInlineEntityFormController
- Support for Inline Entity Form.
Code
public function defaultLabels() {
  $labels = array(
    'singular' => t('Fieldable Panels Pane'),
    'plural' => t('Fieldable Panels Panes'),
  );
  return $labels;
}