
| Current Path : /var/www/html/store1/web/core/lib/Drupal/Core/Theme/ |
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/store1/web/core/lib/Drupal/Core/Theme/StarterKitInterface.php |
<?php
namespace Drupal\Core\Theme;
/**
* Allows starter kits to interact with theme generation.
*/
interface StarterKitInterface {
/**
* Performs post-processing of a generated theme.
*
* @param string $working_dir
* The working directory of the template being generated.
* @param string $machine_name
* The theme's machine name.
* @param string $theme_name
* The theme's name.
*/
public static function postProcess(string $working_dir, string $machine_name, string $theme_name): void;
}