system_install

system_install()

Implements hook_install().

File

core/modules/system/system.install, line 875
Install, update and uninstall functions for the system module.

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
function system_install() {
  // Populate the cron key state variable.
  $cron_key = Crypt::randomBytesBase64(55);
  \Drupal::state()->set('system.cron_key', $cron_key);
 
  // Populate the site UUID and default name (if not set).
  $site = \Drupal::configFactory()->getEditable('system.site');
  $site->set('uuid', \Drupal::service('uuid')->generate());
  if (!$site->get('name')) {
    $site->set('name', 'Drupal');
  }
  $site->save(TRUE);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.