function Range::getInfo

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

Overrides Number::getInfo

File

core/lib/Drupal/Core/Render/Element/Range.php, line 35

Class

Range
Provides a slider for input of a number within a specific range.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
  $info = parent::getInfo();
  $class = static::class;
  return [
    '#min' => 0,
    '#max' => 100,
    '#pre_render' => [
      [
        $class,
        'preRenderRange',
      ],
    ],
    '#theme' => 'input__range',
  ] + $info;
}

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