syslog.install 418 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Install, update and uninstall functions for the syslog module.
  5. */
  6. /**
  7. * Implements hook_install().
  8. */
  9. function syslog_install() {
  10. // The default facility setting depends on the operating system, so it needs
  11. // to be set dynamically during installation.
  12. \Drupal::configFactory()->getEditable('syslog.settings')->set('facility', defined('LOG_LOCAL0') ? LOG_LOCAL0 : LOG_USER)->save();
  13. }