Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

StarterKitInterface.php

Namespace

Drupal\Core\Theme

File

core/lib/Drupal/Core/Theme/StarterKitInterface.php

View source
<?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;

}

Interfaces

Title Deprecated Summary
StarterKitInterface Allows starter kits to interact with theme generation.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal