On insyall this error happens and I have to drush pmu to uninstall it

Drupal\Core\Config\UnsupportedDataTypeConfigException: Invalid data type in config views.view.map_leaflet_centered_on_visitor_location, found in file modules/ip_geoloc/config/optional/views.view.map_leaflet_centered_on_visitor_location.yml: Duplicate key "display_plugin" detected at line 183 (near "display_plugin: ").

That same type of erroir was in three files in that directory, and seting the proper core version and deleteing the extra solved that.

Then modulerhandler errors had to be corrected similar to https://www.drupal.org/files/issues/2022-09-02/3307333-2.patch to changew the use staement etc

Then an explode deprecated error similar to https://www.drupal.org/files/issues/2022-04-26/deprecated-explode-327727...

Then several Unparenthesized `a ? b : c ? d : e` is not supported. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` errors exposed and visible as to the files via command line "drush en ip_geoloc"

Then modules\ip_geoloc\src\Plugin\views\style\IpGeoLocPluginStyleOpenLayers.php came up with a conflict

\ip_geoloc\Plugin\views\style\IpGeoLocPluginStyleOpenLayers::__construct(): Argument #6 ($ip_geoloc_global) must be of type Drupal\ip_geoloc\Plugin\views\style\IpGeoLocGlobal, Drupal\ip_geoloc\Services\IpGeoLocGlobal given, called in /ip_geoloc/src/Plugin/views/style/IpGeoLocPluginStyleOpenLayers.php on line 52 in Drupal\ip_geoloc\Plugin\views\style\IpGeoLocPluginStyleOpenLayers->__construct() (line 37 of /ip_geoloc/src/Plugin/views/style/IpGeoLocPluginStyleOpenLayers.php).

Which I am not having luck solving

Comments

bobburns created an issue. See original summary.

bobburns’s picture

Issue summary: View changes
effortdee’s picture

Surprised this hasnt been developed for Drupal 8+ as it was used on most of my D7 websites and seemed to be a very popular module.

orkutmuratyilmaz’s picture

Status: Active » Needs review

@bobburns, have you tested the latest commits on 2.0.0-alpha0?