You are here

public function TestFieldZeroFloat::build in Display Suite 8.2

Same name and namespace in other branches
  1. 8.4 tests/modules/ds_test/src/Plugin/DsField/TestFieldZeroFloat.php \Drupal\ds_test\Plugin\DsField\TestFieldZeroFloat::build()
  2. 8.3 tests/modules/ds_test/src/Plugin/DsField/TestFieldZeroFloat.php \Drupal\ds_test\Plugin\DsField\TestFieldZeroFloat::build()

Renders a field.

Overrides DsFieldBase::build

File

tests/modules/ds_test/src/Plugin/DsField/TestFieldZeroFloat.php, line 21

Class

TestFieldZeroFloat
Test field plugin that returns zero as a floating point number.

Namespace

Drupal\ds_test\Plugin\DsField

Code

public function build() {
  return array(
    '#markup' => 0.0,
  );
}