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

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
2016-10-29 09:45:55
Comments
Leave a Comment

Please login to continue.