You are here

public function MachineName::getInfo in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Render/Element/MachineName.php \Drupal\Core\Render\Element\MachineName::getInfo()
  2. 9 core/lib/Drupal/Core/Render/Element/MachineName.php \Drupal\Core\Render\Element\MachineName::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 Textfield::getInfo

File

core/lib/Drupal/Core/Render/Element/MachineName.php, line 78

Class

MachineName
Provides a machine name render element.

Namespace

Drupal\Core\Render\Element

Code

public function getInfo() {
  $class = static::class;
  return [
    '#input' => TRUE,
    '#default_value' => NULL,
    '#required' => TRUE,
    '#maxlength' => 64,
    '#size' => 60,
    '#autocomplete_route_name' => FALSE,
    '#process' => [
      [
        $class,
        'processMachineName',
      ],
      [
        $class,
        'processAutocomplete',
      ],
      [
        $class,
        'processAjaxForm',
      ],
    ],
    '#element_validate' => [
      [
        $class,
        'validateMachineName',
      ],
    ],
    '#pre_render' => [
      [
        $class,
        'preRenderTextfield',
      ],
    ],
    '#theme' => 'input__textfield',
    '#theme_wrappers' => [
      'form_element',
    ],
  ];
}