function Number::getInfo

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

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 = get_class($this);
    return [
        '#input' => TRUE,
        '#step' => 1,
        '#process' => [
            [
                $class,
                'processAjaxForm',
            ],
        ],
        '#element_validate' => [
            [
                $class,
                'validateNumber',
            ],
        ],
        '#pre_render' => [
            [
                $class,
                'preRenderNumber',
            ],
        ],
        '#theme' => 'input__number',
        '#theme_wrappers' => [
            'form_element',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.