bootstrap-8.x-3.23/src/Plugin/Preprocess/ContainerHelpBlock.php
src/Plugin/Preprocess/ContainerHelpBlock.php
<?php namespace Drupal\bootstrap\Plugin\Preprocess; use Drupal\bootstrap\Utility\Variables; /** * Pre-processes variables for the "container__help_block" theme hook. * * @ingroup plugins_preprocess * * @BootstrapPreprocess("container__help_block") */ class ContainerHelpBlock extends PreprocessBase implements PreprocessInterface { /** * {@inheritdoc} */ public function preprocessVariables(Variables $variables) { $variables->addClass('help-block'); } }