2022-04-27 11:30:43 +02:00

22 lines
476 B
Twig

<?php
/**
* @file
* Install, update and uninstall hooks for the {{ profile }} install profile.
*/
/**
* Implements hook_install().
*
* Perform actions to set up the site for this profile.
*
* @see system_install()
*/
function {{ machine_name }}_install() {
// First, do everything that is done in the standard profile.
include_once DRUPAL_ROOT . '/core/profiles/standard/standard.install';
standard_install();
// Add code here to make nodes, terms, etc.
}