You are here

express.install in Express 8

Same filename and directory in other branches
  1. 7.2 express.install

Install, update and uninstall functions for the profilename install profile.

File

express.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the profilename install profile.
 */

/**
 * Implements hook_install().
 *
 * Perform actions to set up the site for this profile.
 *
 * @see system_install()
 */
function express_install() {
  \Drupal::configFactory()
    ->getEditable('system.theme')
    ->set('admin', 'seven')
    ->save();
}

Functions

Namesort descending Description
express_install Implements hook_install().