function RecipeRunner::processRecipe
Parameters
\Drupal\Core\Recipe\Recipe $recipe: The recipe to apply.
1 call to RecipeRunner::processRecipe()
- RecipeRunner::processRecipes in core/
lib/ Drupal/ Core/ Recipe/ RecipeRunner.php - Applies any recipes listed by the recipe.
File
-
core/
lib/ Drupal/ Core/ Recipe/ RecipeRunner.php, line 36
Class
- RecipeRunner
- Applies a recipe.
Namespace
Drupal\Core\RecipeCode
public static function processRecipe(Recipe $recipe) : void {
static::processRecipes($recipe->recipes);
static::processInstall($recipe->install, $recipe->config
->getConfigStorage());
static::processConfiguration($recipe);
static::processContent($recipe->content);
static::triggerEvent($recipe);
}