varbase_media_header-9.0.0-alpha1/varbase_media_header.install
varbase_media_header.install
<?php
/**
* @file
* Install, update and uninstall functions for the Varbase Media Header module.
*/
use Drupal\Core\Recipe\Recipe;
use Drupal\Core\Recipe\RecipeRunner;
// Include all helpers and updates.
include_once __DIR__ . '/includes/helpers.inc';
include_once __DIR__ . '/includes/updates.inc';
/**
* Implements hook_install().
*/
function varbase_media_header_install() {
$default_recipe = Recipe::createFromDirectory(__DIR__ . '/recipes/default');
RecipeRunner::processRecipe($default_recipe);
}
