
| Current Path : /var/www/html/rocksensor1/web/themes/contrib/adaptivetheme/at_core/includes/ |
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/rocksensor1/web/themes/contrib/adaptivetheme/at_core/includes/theme.inc |
<?php
/**
* @file
*/
/**
* Implements hook_theme().
*/
use Drupal\Core\Extension\ThemeExtensionList;
function at_core_theme() {
$path = \Drupal::service('extension.list.theme')->getPath('at_core');
return [
// Define the row template/hook.
'row' => [
'variables' => [
'regions' => NULL
],
'template' => 'row',
'path' => $path . '/templates/layout',
],
// Ensure suggestions are picked up in the base theme first.
'row__header' => [
'base hook' => 'row',
'path' => $path . '/templates/layout',
],
'row__footer' => [
'base hook' => 'row',
'path' => $path . '/templates/layout',
],
// Template suggestion for the breadcrumb page title placeholder.
'page_title__breadcrumb' => [
'base hook' => 'page_title',
'path' => $path . '/templates/content',
],
];
}