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 'core/SettingsPiwik.php')
-rw-r--r--core/SettingsPiwik.php18
1 files changed, 17 insertions, 1 deletions
diff --git a/core/SettingsPiwik.php b/core/SettingsPiwik.php
index f8f5d37c68..d8a04ec27a 100644
--- a/core/SettingsPiwik.php
+++ b/core/SettingsPiwik.php
@@ -235,6 +235,17 @@ class SettingsPiwik
}
/**
+ * Check if outgoing internet connections are enabled
+ * This is often disable in an intranet environment
+ *
+ * @return bool
+ */
+ public static function isInternetEnabled()
+ {
+ return (bool) Config::getInstance()->General['enable_internet_features'];
+ }
+
+ /**
* Detect whether user has enabled auto updates. Please note this config is a bit misleading. It is currently
* actually used for 2 things: To disable making any connections back to Piwik, and to actually disable the auto
* update of core and plugins.
@@ -242,7 +253,12 @@ class SettingsPiwik
*/
public static function isAutoUpdateEnabled()
{
- return (bool) Config::getInstance()->General['enable_auto_update'];
+ $enableAutoUpdate = (bool) Config::getInstance()->General['enable_auto_update'];
+ if(self::isInternetEnabled() === true && $enableAutoUpdate === true){
+ return true;
+ }
+
+ return false;
}
/**