geolocation-8.x-3.x-dev/modules/geolocation_geometry/tests/modules/geolocation_geometry_test_js/geolocation_geometry_test_js.module
modules/geolocation_geometry/tests/modules/geolocation_geometry_test_js/geolocation_geometry_test_js.module
<?php
/**
* @file
* Contains geolocation_geometry_test_js.module.
*/
use Drupal\Core\Hook\Attribute\LegacyHook;
use Drupal\geolocation_geometry_test_js\Hook\TestHooks;
/**
* Implements hook_page_attachments().
*/
#[LegacyHook]
function geolocation_geometry_test_js_page_attachments(array &$attachments): void {
$route_match = \Drupal::service('current_route_match');
$test_hooks = new TestHooks($route_match);
$test_hooks->pageAttachments($attachments);
}
