
| Current Path : /var/www/html/rocksensor2/web/core/themes/starterkit_theme/src/ |
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/rocksensor2/web/core/themes/starterkit_theme/src/StarterKit.php |
<?php
namespace Drupal\starterkit_theme;
use Drupal\Core\Theme\StarterKitInterface;
final class StarterKit implements StarterKitInterface {
/**
* {@inheritdoc}
*/
public static function postProcess(string $working_dir, string $machine_name, string $theme_name): void {
$readme_file = "$working_dir/README.md";
try {
file_put_contents($readme_file, "$theme_name theme, generated from starterkit_theme. Additional information on generating themes can be found in the [Starterkit documentation](https://www.drupal.org/docs/core-modules-and-themes/core-themes/starterkit-theme).");
}
catch (\Throwable $th) {
}
}
}