You are here

public function Number::getInfo in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Render/Element/Number.php \Drupal\Core\Render\Element\Number::getInfo()
  2. 9 core/lib/Drupal/Core/Render/Element/Number.php \Drupal\Core\Render\Element\Number::getInfo()

Returns the element properties for this element.

Return value

array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.

Overrides ElementInterface::getInfo

1 call to Number::getInfo()
Range::getInfo in core/lib/Drupal/Core/Render/Element/Range.php
Returns the element properties for this element.
1 method overrides Number::getInfo()
Range::getInfo in core/lib/Drupal/Core/Render/Element/Range.php
Returns the element properties for this element.

File

core/lib/Drupal/Core/Render/Element/Number.php, line 38

Class

Number
Provides a form element for numeric input, with special numeric validation.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
  $class = static::class;
  return [
    '#input' => TRUE,
    '#step' => 1,
    '#process' => [
      [
        $class,
        'processAjaxForm',
      ],
    ],
    '#element_validate' => [
      [
        $class,
        'validateNumber',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderNumber',
      ],
    ],
    '#theme' => 'input__number',
    '#theme_wrappers' => [
      'form_element',
    ],
  ];
}