wxt-8.x-3.011/modules/custom/wxt_core/src/FormHelper.php
modules/custom/wxt_core/src/FormHelper.php
<?php
namespace Drupal\wxt_core;
use Drupal\Core\Render\ElementInfoManagerInterface;
/**
* Provides helper methods for working with forms and form elements.
*
* Leveraged from code provided by Acquia for the Lightning distribution.
*/
final class FormHelper {
/**
* The element info plugin manager.
*
* @var \Drupal\Core\Render\ElementInfoManagerInterface
*/
protected $elementInfo;
/**
* FormHelper constructor.
*
* @param \Drupal\Core\Render\ElementInfoManagerInterface $element_info
* The element info plugin manager.
*/
public function __construct(ElementInfoManagerInterface $element_info) {
@trigger_error(__CLASS__ . ' is deprecated in wxt_core:8.x-5.6 and will be removed in wxt_core:8.x-6.0. Use \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() instead. See https://www.drupal.org/node/3156221', E_USER_DEPRECATED);
$this->elementInfo = $element_info;
}
/**
* Applies standard process functions to a form element.
*
* @param array $element
* The form element.
*/
public function applyStandardProcessing(array &$element) {
if (empty($element['#process'])) {
$info = $this->elementInfo->getInfo($element['#type']);
if (isset($info['#process'])) {
$element['#process'] = $info['#process'];
}
}
}
}
