By admin , 28 November, 2024 Modify template attributes in preprocess /** * Implements hook_preprocess_HOOK(). */ function MYMODULE_preprocess_file_video(&$variables) { if (isset($variables['files'][0]['source_attributes'])) { /** Tags preprocess template attribute
By admin , 4 April, 2024 Override admin template defined in a contrib module /** * Implements hook_theme(). */ function MY_MODULE_theme($existing, $type, $theme, $path) { return [ 'commerce_order__admin' => [ 'template' => 'commerce-order--admin-custom', ], ]; } Tags template theme