You are here

public function TestFieldZeroString::build in Display Suite 8.2

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

Renders a field.

Overrides DsFieldBase::build

File

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

Class

TestFieldZeroString
Test field plugin that returns zero as a string.

Namespace

Drupal\ds_test\Plugin\DsField

Code

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