
| Current Path : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Render/Element/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor/web/core/lib/Drupal/Core/Render/Element/Search.php |
<?php
namespace Drupal\Core\Render\Element;
use Drupal\Core\Render\Attribute\FormElement;
use Drupal\Core\Render\Element;
/**
* Provides an HTML5 input element with type of "search".
*
* Usage example:
* @code
* $form['search'] = [
* '#type' => 'search',
* '#title' => $this->t('Search'),
* ];
* @endcode
*
* @see \Drupal\Core\Render\Element\Textfield
*/
#[FormElement('search')]
class Search extends FormElementBase {
/**
* {@inheritdoc}
*/
public function getInfo() {
$class = static::class;
return [
'#input' => TRUE,
'#size' => 60,
'#maxlength' => 128,
'#autocomplete_route_name' => FALSE,
'#process' => [
[$class, 'processAutocomplete'],
[$class, 'processAjaxForm'],
],
'#pre_render' => [
[$class, 'preRenderSearch'],
],
'#theme' => 'input__search',
'#theme_wrappers' => ['form_element'],
];
}
/**
* Prepares a #type 'search' render element for input.html.twig.
*
* @param array $element
* An associative array containing the properties of the element.
* Properties used: #title, #value, #description, #size, #maxlength,
* #placeholder, #required, #attributes.
*
* @return array
* The $element with prepared variables ready for input.html.twig.
*/
public static function preRenderSearch($element) {
$element['#attributes']['type'] = 'search';
Element::setAttributes($element, ['id', 'name', 'value', 'size', 'maxlength', 'placeholder']);
static::setAttributes($element, ['form-search']);
return $element;
}
}