figli_starter_kit.install 479 B

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