ea8ffeebe717683917b380dcdacb38ee4a89e2d5
[yaffs-website] / profile / install.twig
1 <?php
2
3 /**
4  * @file
5  * Install, update and uninstall hooks for the {{ profile }} install profile.
6  */
7
8 /**
9  * Implements hook_install().
10  *
11  * Perform actions to set up the site for this profile.
12  *
13  * @see system_install()
14  */
15 function {{ machine_name }}_install() {
16   // First, do everything that is done in the standard profile.
17   include_once DRUPAL_ROOT . '/core/profiles/standard/standard.install';
18   standard_install();
19
20   // Add code here to make nodes, terms, etc.
21 }