analytics-8.x-1.0-alpha5/analytics.post_update.php
analytics.post_update.php
<?php
/**
* @file
* Post-update hooks for the analytics module.
*/
/**
* Remove the disable_floc setting since Drupal core now provides the header.
*/
function analytics_post_update_remove_disable_floc() {
$config = \Drupal::configFactory()->getEditable('analytics.settings');
$config->clear('privacy.disable_floc');
$config->save();
}
