Commit 75617a53 authored by Christian Adamski's avatar Christian Adamski
Browse files

Issue #3274786 by ChristianAdamski: file_url_generator is in Drupal 9.3. Make...

Issue #3274786 by ChristianAdamski: file_url_generator is in Drupal 9.3. Make compatible with Drupal 9.2
parent babcd753
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -15,5 +15,9 @@
  "support": {
    "issues": "https://www.drupal.org/project/issues/geolocation",
    "source": "https://git.drupal.org/project/geolocation.git"
  },
  "require": {
    "php": "^7.3 || ^8.0",
    "drupal/core": "^9.2"
  }
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@
  "name": "geolocation-geocodio",
  "license": "GPL-2.0",
  "description": "Geolocation geocodio module",
  "private": true,
  "private": true
}
+1 −1
Original line number Diff line number Diff line
@@ -74,7 +74,7 @@ abstract class GeolocationGeometryDataBase extends PluginBase {
  /**
   * Download batch callback.
   *
   * @return string
   * @return \Drupal\Core\StringTranslation\TranslatableMarkup
   *   Batch return.
   */
  public function download() {
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ class GeolocationGeometryDataManager extends DefaultPluginManager {
   * @param array $batch_settings
   *   Batch settings.
   *
   * @return mixed
   * @return array|\Symfony\Component\HttpFoundation\RedirectResponse|null
   *   Batch process.
   */
  public function executeGemeotryDataBatch(array $batch_settings) {
+2 −2
Original line number Diff line number Diff line
@@ -29,12 +29,12 @@ class GeolocationGeometryWidgetGoogleMaps extends GeolocationGeometryWidgetBase
  /**
   * {@inheritdoc}
   */
  static protected string $mapProviderId = 'google_maps';
  static protected $mapProviderId = 'google_maps';

  /**
   * {@inheritdoc}
   */
  static protected string $mapProviderSettingsFormId = 'google_map_settings';
  static protected $mapProviderSettingsFormId = 'google_map_settings';

  /**
   * {@inheritdoc}
Loading