Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 22 |
Search | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 22 |
getInfo | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 17 |
|||
preRenderSearch | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 5 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Render\Element\Search. | |
*/ | |
namespace Drupal\Core\Render\Element; | |
use Drupal\Core\Render\Element; | |
/** | |
* Provides an HTML5 input element with type of "search". | |
* | |
* Usage example: | |
* @code | |
* $form['search'] = array( | |
* '#type' => 'search', | |
* '#title' => t('Search'), | |
* ); | |
* @endcode | |
* | |
* @see \Drupal\Core\Render\Element\Textfield | |
* | |
* @FormElement("search") | |
*/ | |
class Search extends FormElement { | |
/** | |
* {@inheritdoc} | |
*/ | |
public function getInfo() { | |
$class = get_class($this); | |
return array( | |
'#input' => TRUE, | |
'#size' => 60, | |
'#maxlength' => 128, | |
'#autocomplete_route_name' => FALSE, | |
'#process' => array( | |
array($class, 'processAutocomplete'), | |
array($class, 'processAjaxForm'), | |
), | |
'#pre_render' => array( | |
array($class, 'preRenderSearch'), | |
), | |
'#theme' => 'input__search', | |
'#theme_wrappers' => array('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, array('id', 'name', 'value', 'size', 'maxlength', 'placeholder')); | |
static::setAttributes($element, array('form-search')); | |
return $element; | |
} | |
} |