You are here

protected function FormComponentTypeBase::getDefaultRendererPlugin in Flexiform 8

Get the default renderer plugin.

Parameters

string $component_name: The component name.

Return value

string The default region.

1 call to FormComponentTypeBase::getDefaultRendererPlugin()
FormComponentTypeBase::buildComponentRow in src/FormComponent/FormComponentTypeBase.php
Build a component row for a component of this type.
1 method overrides FormComponentTypeBase::getDefaultRendererPlugin()
FieldWidgetComponentType::getDefaultRendererPlugin in src/Plugin/FormComponentType/FieldWidgetComponentType.php
Get the default renderer plugin.

File

src/FormComponent/FormComponentTypeBase.php, line 146

Class

FormComponentTypeBase
Base class for form component types.

Namespace

Drupal\flexiform\FormComponent

Code

protected function getDefaultRendererPlugin($component_name) {
  return 'default';
}