clean install

This commit is contained in:
2024-12-10 15:08:16 +01:00
commit e14eb2d8fd
31193 changed files with 3555714 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
/**
* @file
* node.theme
*/
/**
* Implements hook_preprocess_HOOK() for node_edit_form.
*/
function gin_preprocess_node_edit_form(&$variables) {
$module_handler = \Drupal::service('module_handler');
// Check if Layout Paragraphs is active.
$layout_paragraphs = $module_handler->moduleExists('layout_paragraphs');
$variables['gin_layout_paragraphs'] = $layout_paragraphs;
}