
| Current Path : /var/www/html_old/abc/web/core/modules/syslog/ |
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_old/abc/web/core/modules/syslog/syslog.install |
<?php
/**
* @file
* Install, update and uninstall functions for the syslog module.
*/
/**
* Implements hook_install().
*/
function syslog_install() {
// The default facility setting depends on the operating system, so it needs
// to be set dynamically during installation.
\Drupal::configFactory()->getEditable('syslog.settings')->set('facility', defined('LOG_LOCAL0') ? LOG_LOCAL0 : LOG_USER)->save();
}
/**
* Convert syslog.settings.facility to an integer.
*/
function syslog_update_8400() {
$config = \Drupal::configFactory()->getEditable('syslog.settings');
$facility = (int) $config->get('facility');
$config->set('facility', $facility)->save(TRUE);
}