idSite = $idSite; $storageFactory = StaticContainer::get('Piwik\Settings\Storage\Factory'); $this->storage = $storageFactory->getMeasurableSettingsStorage($idSite, $this->pluginName); } /** * Returns `true` if this setting can be displayed for the current user, `false` if otherwise. * * @return bool */ public function isWritableByCurrentUser() { if (isset($this->hasWritePermission)) { return $this->hasWritePermission; } // performance improvement, do not detect this in __construct otherwise likely rather "big" query to DB. if ($this->hasSiteBeenCreated()) { $this->hasWritePermission = Piwik::isUserHasAdminAccess($this->idSite); } else { $this->hasWritePermission = Piwik::hasUserSuperUserAccess(); } return $this->hasWritePermission; } private function hasSiteBeenCreated() { return !empty($this->idSite); } }