You are here

final class StarterKit in Drupal 10

Hierarchy

  • class \Drupal\starterkit_theme\StarterKit implements \Drupal\Core\Theme\StarterKitInterface

Expanded class hierarchy of StarterKit

File

core/themes/starterkit_theme/src/StarterKit.php, line 8

Namespace

Drupal\starterkit_theme
View source
final class StarterKit implements StarterKitInterface {

  /**
   * {@inheritdoc}
   */
  public static function postProcess(string $working_dir, string $machine_name, string $theme_name) : void {
    $info_file = "{$working_dir}/{$machine_name}.info.yml";
    $info = Yaml::decode(file_get_contents($info_file));
    unset($info['hidden']);
    file_put_contents($info_file, Yaml::encode($info));
  }

}

Members