You are here

public function DsFieldBase::getFieldConfiguration in Display Suite 8.3

Same name and namespace in other branches
  1. 8.4 src/Plugin/DsField/DsFieldBase.php \Drupal\ds\Plugin\DsField\DsFieldBase::getFieldConfiguration()
  2. 8.2 src/Plugin/DsField/DsFieldBase.php \Drupal\ds\Plugin\DsField\DsFieldBase::getFieldConfiguration()

Gets the field configuration.

Return value

array The configured field settings.

Overrides DsFieldInterface::getFieldConfiguration

4 calls to DsFieldBase::getFieldConfiguration()
Date::build in src/Plugin/DsField/Date.php
Renders a field.
DynamicBlockField::getTitle in src/Plugin/DsField/DynamicBlockField.php
Returns the title of the block.
NodeAuthor::build in src/Plugin/DsField/Node/NodeAuthor.php
Renders a field.
NodeSubmittedBy::build in src/Plugin/DsField/Node/NodeSubmittedBy.php
Renders a field.

File

src/Plugin/DsField/DsFieldBase.php, line 149

Class

DsFieldBase
Base class for all the ds plugins.

Namespace

Drupal\ds\Plugin\DsField

Code

public function getFieldConfiguration() {
  return $this->configuration['field'];
}