You are here

function express_install in Express 8

Same name and namespace in other branches
  1. 7.2 express.install \express_install()

Implements hook_install().

Perform actions to set up the site for this profile.

See also

system_install()

File

./express.install, line 14
Install, update and uninstall functions for the profilename install profile.

Code

function express_install() {
  \Drupal::configFactory()
    ->getEditable('system.theme')
    ->set('admin', 'seven')
    ->save();
}