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/angularjs/location-provider-updater/location-provider-updater.directive.js')
-rw-r--r--plugins/UserCountry/angularjs/location-provider-updater/location-provider-updater.directive.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/UserCountry/angularjs/location-provider-updater/location-provider-updater.directive.js b/plugins/UserCountry/angularjs/location-provider-updater/location-provider-updater.directive.js
new file mode 100644
index 0000000000..441689f714
--- /dev/null
+++ b/plugins/UserCountry/angularjs/location-provider-updater/location-provider-updater.directive.js
@@ -0,0 +1,37 @@
+/*!
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+/**
+ * Usage:
+ * <div piwik-location-provider-selection>
+ */
+(function () {
+ angular.module('piwikApp').directive('piwikLocationProviderUpdater', piwikLocationProviderUpdater);
+
+ piwikLocationProviderUpdater.$inject = ['piwik'];
+
+ function piwikLocationProviderUpdater(piwik){
+
+ return {
+ restrict: 'A',
+ transclude: true,
+ controller: 'LocationProviderUpdaterController',
+ controllerAs: 'locationUpdater',
+ template: '<div ng-transclude></div>',
+ compile: function (element, attrs) {
+
+ return function (scope, element, attrs, controller) {
+ controller.geoipDatabaseInstalled = '0' !== attrs.geoipDatabaseInstalled;
+ controller.showFreeDownload = false;
+ controller.showPiwikNotManagingInfo = true;
+ controller.progressFreeDownload = 0;
+ controller.progressUpdateDownload = 0;
+ };
+ }
+ };
+ }
+})(); \ No newline at end of file