
| Current Path : /var/www/html/wirtschaftsclub.web-klick.de/themes/bootstrap/src/Plugin/Prerender/ |
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/wirtschaftsclub.web-klick.de/themes/bootstrap/src/Plugin/Prerender/Captcha.php |
<?php
namespace Drupal\bootstrap\Plugin\Prerender;
use Drupal\bootstrap\Utility\Element;
/**
* Pre-render callback for the "captcha" element type.
*
* @ingroup plugins_prerender
*
* @BootstrapPrerender("captcha",
* action = @BootstrapConstant(
* "\Drupal\bootstrap\Bootstrap::CALLBACK_PREPEND"
* )
* )
*/
class Captcha extends PrerenderBase {
/**
* {@inheritdoc}
*/
public static function preRenderElement(Element $element) {
parent::preRenderElement($element);
$element->setProperty('smart_description', FALSE, TRUE);
}
}