charts-8.x-4.x-dev/modules/charts_google/charts_google.module
modules/charts_google/charts_google.module
<?php
/**
* @file
* Implement module related hooks for the charts_google module.
*/
use Drupal\Core\Hook\Attribute\LegacyHook;
/**
* Implements hook_charts_version3_to_new_settings_structure_alter().
*
* @phpstan-ignore-next-line
*/
#[LegacyHook]
function charts_google_charts_version3_to_new_settings_structure_alter(array &$new_settings, string $for) {
return \Drupal::service('charts_google.hooks')->chartsVersion3ToNewSettingsStructureAlter($new_settings, $for);
}
