
| Current Path : /var/www/html/rocksensor3/web/core/modules/config/tests/config_test/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor3/web/core/modules/config/tests/config_test/config_test.install |
<?php
/**
* @file
* Install, update and uninstall functions for the config_test module.
*/
/**
* Implements hook_install().
*/
function config_test_install($is_syncing): void {
$secondary_write = \Drupal::state()->get('config_test_install.foo_value');
if ($secondary_write !== NULL) {
\Drupal::configFactory()
->getEditable('config_test.system')
->set('foo', $secondary_write)
->save();
}
}