public function BeanInlineEntityFormController::labels in Bean (for Drupal 7) 7
Overrides EntityInlineEntityFormController::labels().
Overrides EntityInlineEntityFormController::labels
1 call to BeanInlineEntityFormController::labels()
File
- includes/
bean.inline_entity_form.inc, line 13 - Defines the inline entity form controller for Nodes.
Class
- BeanInlineEntityFormController
- @file Defines the inline entity form controller for Nodes.
Code
public function labels() {
$labels = array(
'singular' => t('block'),
'plural' => t('blocks'),
);
return $labels;
}