hospital_management-8.x-1.x-dev/web/themes/bootstrap/src/Plugin/Preprocess/ContainerHelpBlock.php
web/themes/bootstrap/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');
}
}
