o365-2.0.3/modules/o365_sso_user/o365_sso_user.install
modules/o365_sso_user/o365_sso_user.install
<?php
/**
* @file
* Install and update hooks for the o365_sso_user module.
*/
/**
* Implements hook_install().
*/
function o365_sso_user_install() {
module_set_weight('o365_sso_user', 100);
}
/**
* Enable the o365_profile module.
*/
function o365_sso_user_update_9001() {
$modules = ['o365_profile', 'o365_sso'];
\Drupal::service('module_installer')->install($modules, TRUE);
}
