You are here

ComputedNumberWidget.php in Computed Field 8.2

Same filename and directory in other branches
  1. 3.x src/Plugin/Field/FieldWidget/ComputedNumberWidget.php

File

src/Plugin/Field/FieldWidget/ComputedNumberWidget.php
View source
<?php

namespace Drupal\computed_field\Plugin\Field\FieldWidget;


/**
 * Plugin implementation of the 'computed_number_widget' widget.
 *
 * @FieldWidget(
 *   id = "computed_number_widget",
 *   label = @Translation("Computed (visually hidden)"),
 *   field_types = {
 *     "computed_integer",
 *     "computed_decimal",
 *     "computed_float"
 *   }
 * )
 */
class ComputedNumberWidget extends ComputedWidgetBase {

  /**
   * Define how the widget is constructed.
   */
  public function getDefaultValue() {
    return 0;
  }

}

Classes

Namesort descending Description
ComputedNumberWidget Plugin implementation of the 'computed_number_widget' widget.