You are here

ComputedNumericUnformattedFormatter.php in Computed Field 8.2

File

src/Plugin/Field/FieldFormatter/ComputedNumericUnformattedFormatter.php
View source
<?php

namespace Drupal\computed_field\Plugin\Field\FieldFormatter;


/**
 * Plugin implementation of the 'computed_number_unformatted' formatter.
 *
 * @FieldFormatter(
 *   id = "computed_number_unformatted",
 *   label = @Translation("Unformatted"),
 *   field_types = {
 *     "computed_integer",
 *     "computed_decimal",
 *     "computed_float"
 *   }
 * )
 */
class ComputedNumericUnformattedFormatter extends ComputedFormatterBase {

}

Classes

Namesort descending Description
ComputedNumericUnformattedFormatter Plugin implementation of the 'computed_number_unformatted' formatter.