12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- use Drupal\Core\Cache\CacheableMetadata;
- function basic_preprocess_html(&$variables) {
- try {
- $variables['is_front'] = \Drupal::service('path.matcher')->isFrontPage();
- }
- catch (Exception $e) {
-
-
- $variables['is_front'] = FALSE;
- }
-
- if (!$variables['is_front']) {
-
- $path = \Drupal::service('path.current')->getPath();
- $alias = \Drupal::service('path.alias_manager')->getAliasByPath($path);
- $alias = trim($alias, '/');
- if (!empty($alias)) {
- $name = str_replace('/', '-', $alias);
- $variables['attributes']['class'][] = 'page-' . $name;
- list($section,) = explode('/', $alias, 2);
- if (!empty($section)) {
- $variables['attributes']['class'][] = 'section-' . $section;
- }
- }
- }
-
- $theme_name = \Drupal::theme()->getActiveTheme()->getName();
- $theme_settings = \Drupal::config($theme_name . '.settings');
- CacheableMetadata::createFromRenderArray($variables)
- ->addCacheableDependency($theme_settings)
- ->applyTo($variables);
-
- $variables += $theme_settings->getOriginal();
- }
- function basic_preprocess_field(&$variables, $hook) {
-
- $variables['bundle'] = $variables['element']['#bundle'];
- }
|