Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserCountry/LocationProvider.php')
-rw-r--r--plugins/UserCountry/LocationProvider.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/UserCountry/LocationProvider.php b/plugins/UserCountry/LocationProvider.php
index 95f08a9a8d..106ec0afed 100644
--- a/plugins/UserCountry/LocationProvider.php
+++ b/plugins/UserCountry/LocationProvider.php
@@ -144,6 +144,26 @@ abstract class LocationProvider
abstract public function getSupportedLocationInfo();
/**
+ * Renders Configuration or Setup View to be attached to the provider list
+ *
+ * @return string
+ */
+ public function renderConfiguration()
+ {
+ return '';
+ }
+
+ /**
+ * Renders SetUp Guide, which will be shown above Geolocation admin, if there is no working provider
+ *
+ * @return string
+ */
+ public function renderSetUpGuide()
+ {
+ return '';
+ }
+
+ /**
* Method called when a provider gets activated.
*/
public function activate()