sitewide_alerts-1.0.0/src/SiteAlertMaxLengthCallbacks.php
src/SiteAlertMaxLengthCallbacks.php
<?php
namespace Drupal\sitewide_alerts;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Security\TrustedCallbackInterface;
/**
* Trusted render callbacks for maxlength module.
*/
class SiteAlertMaxLengthCallbacks implements TrustedCallbackInterface {
/**
* {@inheritDoc}
*/
public static function trustedCallbacks() {
return ['maxlengthPreRender', 'processElement'];
}
/**
* Pre render function to set maxlength attributes.
*
* @param array|mixed $element
* The render array.
*
* @return array
* The processed render array.
*/
public static function maxlengthPreRender(mixed $element): array {
if (isset($element['#maxlength_js']) && $element['#maxlength_js'] === TRUE) {
if (isset($element['#attributes']['data-maxlength']) && $element['#attributes']['data-maxlength'] > 0) {
$element['#attributes']['class'][] = 'maxlength_js_enforce';
$element['#attributes']['class'][] = 'maxlength';
$element['#attached']['library'][] = 'maxlength/maxlength';
}
if (isset($element['summary']['#attributes']['data-maxlength']) && $element['summary']['#attributes']['data-maxlength'] > 0) {
$element['summary']['#attributes']['class'][] = 'maxlength_js_enforce';
$element['summary']['#attributes']['class'][] = 'maxlength';
$element['summary']['#attached']['library'][] = 'maxlength/maxlength';
}
}
return $element;
}
/**
* Process handler for the form elements that can have maxlength attribute.
*
* @param array|mixed $element
* The render array.
* @param \Drupal\Core\Form\FormStateInterface $form_state
* Form state.
*
* @return array
* The processed render array.
*/
public static function processElement(mixed $element, FormStateInterface $form_state): array {
if (isset($element['#attributes']['#maxlength_js_truncate_html']) && $element['#attributes']['#maxlength_js_truncate_html']) {
$element['#attributes']['class'][] = 'maxlength_js_truncate_html';
}
return $element;
}
}
