
| Current Path : /var/www/html/wirtschaftsclub.web-klick.de/themes/bootstrap/src/Plugin/Preprocess/ |
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/Preprocess/Region.php |
<?php
namespace Drupal\bootstrap\Plugin\Preprocess;
use Drupal\bootstrap\Bootstrap;
use Drupal\bootstrap\Utility\Variables;
/**
* Pre-processes variables for the "region" theme hook.
*
* @ingroup plugins_preprocess
*
* @BootstrapPreprocess("region")
*/
class Region extends PreprocessBase implements PreprocessInterface {
/**
* {@inheritdoc}
*/
public function preprocessVariables(Variables $variables) {
$region = $variables['elements']['#region'];
$variables['region'] = $region;
$variables['content'] = $variables['elements']['#children'];
// Help region.
if ($region === 'help' && !empty($variables['content'])) {
$variables['content'] = [
'icon' => Bootstrap::glyphicon('question-sign'),
'content' => ['#markup' => $variables['content']],
];
$variables->addClass(['alert', 'alert-info', 'messages', 'info']);
}
// Support for "well" classes in regions.
static $region_wells;
if (!isset($region_wells)) {
$region_wells = $this->theme->getSetting('region_wells');
}
if (!empty($region_wells[$region])) {
$variables->addClass($region_wells[$region]);
}
}
}