当前位置: 首页>>代码示例>>PHP>>正文


PHP SettingsServer::isTrackerApiRequest方法代码示例

本文整理汇总了PHP中Piwik\SettingsServer::isTrackerApiRequest方法的典型用法代码示例。如果您正苦于以下问题:PHP SettingsServer::isTrackerApiRequest方法的具体用法?PHP SettingsServer::isTrackerApiRequest怎么用?PHP SettingsServer::isTrackerApiRequest使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Piwik\SettingsServer的用法示例。


在下文中一共展示了SettingsServer::isTrackerApiRequest方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: validate

 public function validate()
 {
     $inTrackerRequest = SettingsServer::isTrackerApiRequest();
     $inConsole = Common::isPhpCliMode();
     $this->checkConfigFileExists($this->settingsProvider->getPathGlobal());
     $this->checkConfigFileExists($this->settingsProvider->getPathLocal(), $startInstaller = !$inTrackerRequest && !$inConsole);
 }
开发者ID:JoeHorn,项目名称:piwik,代码行数:7,代码来源:EnvironmentValidator.php

示例2: make

 public static function make($pluginName)
 {
     if (SettingsServer::isTrackerApiRequest()) {
         $storage = new SettingsStorage($pluginName);
     } else {
         $storage = new Storage($pluginName);
     }
     return $storage;
 }
开发者ID:bossrabbit,项目名称:piwik,代码行数:9,代码来源:Factory.php

示例3: get

 /**
  * Returns the database connection and creates it if it hasn't been already.
  *
  * @return \Piwik\Tracker\Db|\Piwik\Db\AdapterInterface|\Piwik\Db
  */
 public static function get()
 {
     if (SettingsServer::isTrackerApiRequest()) {
         return Tracker::getDatabase();
     }
     if (!self::hasDatabaseObject()) {
         self::createDatabaseObject();
     }
     return self::$connection;
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:15,代码来源:Db.php

示例4: validate

 public function validate()
 {
     $this->checkConfigFileExists($this->settingsProvider->getPathGlobal());
     if (SettingsPiwik::isPiwikInstalled()) {
         $this->checkConfigFileExists($this->settingsProvider->getPathLocal(), $startInstaller = false);
         return;
     }
     $startInstaller = true;
     if (SettingsServer::isTrackerApiRequest()) {
         // if Piwik is not installed yet, the piwik.php should do nothing and not return an error
         throw new NotYetInstalledException("As Piwik is not installed yet, the Tracking API cannot proceed and will exit without error.");
     }
     if (Common::isPhpCliMode()) {
         // in CLI, do not start/redirect to installer, simply output the exception at the top
         $startInstaller = false;
     }
     // Start the installation when config file not found
     $this->checkConfigFileExists($this->settingsProvider->getPathLocal(), $startInstaller);
 }
开发者ID:diosmosis,项目名称:piwik,代码行数:19,代码来源:EnvironmentValidator.php

示例5: loadTranslation

 /**
  * Load translation
  *
  * @param Plugin $plugin
  * @param string $langCode
  * @throws \Exception
  * @return bool whether the translation was found and loaded
  */
 private function loadTranslation($plugin, $langCode)
 {
     // we are in Tracker mode if Loader is not (yet) loaded
     if (SettingsServer::isTrackerApiRequest()) {
         return false;
     }
     if (is_string($plugin)) {
         $pluginName = $plugin;
     } else {
         $pluginName = $plugin->getPluginName();
     }
     $path = self::getPluginsDirectory() . $pluginName . '/lang/%s.json';
     $defaultLangPath = sprintf($path, $langCode);
     $defaultEnglishLangPath = sprintf($path, 'en');
     $translationsLoaded = false;
     // merge in english translations as default first
     if (file_exists($defaultEnglishLangPath)) {
         $translations = $this->getTranslationsFromFile($defaultEnglishLangPath);
         $translationsLoaded = true;
         if (isset($translations[$pluginName])) {
             // only merge translations of plugin - prevents overwritten strings
             Translate::mergeTranslationArray(array($pluginName => $translations[$pluginName]));
         }
     }
     // merge in specific language translations (to overwrite english defaults)
     if (!empty($langCode) && $defaultEnglishLangPath != $defaultLangPath && file_exists($defaultLangPath)) {
         $translations = $this->getTranslationsFromFile($defaultLangPath);
         $translationsLoaded = true;
         if (isset($translations[$pluginName])) {
             // only merge translations of plugin - prevents overwritten strings
             Translate::mergeTranslationArray(array($pluginName => $translations[$pluginName]));
         }
     }
     return $translationsLoaded;
 }
开发者ID:TensorWrenchOSS,项目名称:piwik,代码行数:43,代码来源:Manager.php

示例6: test_loadTrackerEnvironment_shouldNotThrow_whenConfigNotFound

 public function test_loadTrackerEnvironment_shouldNotThrow_whenConfigNotFound()
 {
     $this->assertTrue(!array_key_exists('PIWIK_TRACKER_DEBUG', $GLOBALS));
     $this->assertFalse(SettingsServer::isTrackerApiRequest());
     $this->assertTrue(is_readable(Config::getInstance()->getLocalPath()));
     $this->removeConfigFile();
     $this->assertFalse(is_readable(Config::getInstance()->getLocalPath()));
     Tracker::loadTrackerEnvironment();
     $this->assertTrue(SettingsServer::isTrackerApiRequest());
     //always reset on the test itself
     $this->restoreConfigFile();
 }
开发者ID:dorelljames,项目名称:piwik,代码行数:12,代码来源:TrackerTest.php

示例7: persistCache

 /**
  * @ignore
  */
 public static function persistCache()
 {
     if (self::$isDirty) {
         if (SettingsServer::isTrackerApiRequest()) {
             $mode = '-tracker';
         } else {
             $mode = '-ui';
         }
         self::getStorage()->set(self::getCacheFilename() . $mode, self::$content);
     }
 }
开发者ID:josl,项目名称:CGE-File-Sharing,代码行数:14,代码来源:PersistentCache.php

示例8: checkHasEnoughReadPermission

 /**
  * @param $setting
  * @throws \Exception
  */
 private function checkHasEnoughReadPermission(Setting $setting)
 {
     // When the request is a Tracker request, allow plugins to read settings
     if (SettingsServer::isTrackerApiRequest()) {
         return;
     }
     if (!$setting->isReadableByCurrentUser()) {
         $errorMsg = Piwik::translate('CoreAdminHome_PluginSettingReadNotAllowed', array($setting->getName(), $this->pluginName));
         throw new \Exception($errorMsg);
     }
 }
开发者ID:TensorWrenchOSS,项目名称:piwik,代码行数:15,代码来源:Settings.php

示例9: setupProfilerXHProf

 /**
  * Initializes Profiling via XHProf.
  * See: https://github.com/piwik/piwik/blob/master/tests/README.xhprof.md
  */
 public static function setupProfilerXHProf($mainRun = false, $setupDuringTracking = false)
 {
     if (!$setupDuringTracking && SettingsServer::isTrackerApiRequest()) {
         // do not profile Tracker
         return;
     }
     if (self::$isXhprofSetup) {
         return;
     }
     $xhProfPath = PIWIK_INCLUDE_PATH . '/vendor/facebook/xhprof/extension/modules/xhprof.so';
     if (!file_exists($xhProfPath)) {
         throw new Exception("Cannot find xhprof, run 'composer install --dev' and build the extension.");
     }
     if (!function_exists('xhprof_enable')) {
         throw new Exception("Cannot find xhprof_enable, make sure to add 'extension={$xhProfPath}' to your php.ini.");
     }
     $outputDir = ini_get("xhprof.output_dir");
     if (empty($outputDir)) {
         throw new Exception("The profiler output dir is not set. Add 'xhprof.output_dir=...' to your php.ini.");
     }
     if (!is_writable($outputDir)) {
         throw new Exception("The profiler output dir '" . ini_get("xhprof.output_dir") . "' should exist and be writable.");
     }
     if (!function_exists('xhprof_error')) {
         function xhprof_error($out)
         {
             echo substr($out, 0, 300) . '...';
         }
     }
     $currentGitBranch = SettingsPiwik::getCurrentGitBranch();
     $profilerNamespace = "piwik";
     if ($currentGitBranch != 'master') {
         $profilerNamespace .= "-" . $currentGitBranch;
     }
     if ($mainRun) {
         self::setProfilingRunIds(array());
     }
     xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);
     register_shutdown_function(function () use($profilerNamespace, $mainRun) {
         $xhprofData = xhprof_disable();
         $xhprofRuns = new XHProfRuns_Default();
         $runId = $xhprofRuns->save_run($xhprofData, $profilerNamespace);
         if (empty($runId)) {
             die('could not write profiler run');
         }
         $runs = Profiler::getProfilingRunIds();
         array_unshift($runs, $runId);
         if ($mainRun) {
             Profiler::aggregateXhprofRuns($runs, $profilerNamespace, $saveTo = $runId);
             $baseUrlStored = SettingsPiwik::getPiwikUrl();
             $out = "\n\n";
             $baseUrl = "http://" . @$_SERVER['HTTP_HOST'] . "/" . @$_SERVER['REQUEST_URI'];
             if (strlen($baseUrlStored) > strlen($baseUrl)) {
                 $baseUrl = $baseUrlStored;
             }
             $baseUrl = $baseUrlStored . "vendor/facebook/xhprof/xhprof_html/?source={$profilerNamespace}&run={$runId}";
             $out .= "Profiler report is available at:\n";
             $out .= "<a href='{$baseUrl}'>{$baseUrl}</a>";
             $out .= "\n\n";
             if (Development::isEnabled()) {
                 $out .= "WARNING: Development mode is enabled. Many runtime optimizations are not applied in development mode. ";
                 $out .= "Unless you intend to profile Piwik in development mode, your profile may not be accurate.";
                 $out .= "\n\n";
             }
             echo $out;
         } else {
             Profiler::setProfilingRunIds($runs);
         }
     });
     self::$isXhprofSetup = true;
 }
开发者ID:bossrabbit,项目名称:piwik,代码行数:75,代码来源:Profiler.php

示例10: reload

 /**
  * Reloads config data from disk.
  *
  * @throws \Exception if the global config file is not found and this is a tracker request, or
  *                    if the local config file is not found and this is NOT a tracker request.
  */
 public function reload()
 {
     $this->initialized = true;
     $inTrackerRequest = SettingsServer::isTrackerApiRequest();
     // read defaults from global.ini.php
     if (!is_readable($this->pathGlobal) && $inTrackerRequest) {
         throw new Exception(Piwik::translate('General_ExceptionConfigurationFileNotFound', array($this->pathGlobal)));
     }
     try {
         $this->settings->reload(array($this->pathGlobal, $this->pathCommon), $this->pathLocal);
     } catch (IniReadingException $e) {
         if ($inTrackerRequest) {
             throw $e;
         }
     }
     // Check config.ini.php last
     if (!$inTrackerRequest) {
         $this->checkLocalConfigFound();
     }
 }
开发者ID:bossrabbit,项目名称:piwik,代码行数:26,代码来源:Config.php

示例11: init

 /**
  * Read configuration from files into memory
  *
  * @throws Exception if local config file is not readable; exits for other errors
  */
 public function init()
 {
     $this->initialized = true;
     $reportError = SettingsServer::isTrackerApiRequest();
     // read defaults from global.ini.php
     if (!is_readable($this->pathGlobal) && $reportError) {
         Piwik_ExitWithMessage(Piwik::translate('General_ExceptionConfigurationFileNotFound', array($this->pathGlobal)));
     }
     $this->configGlobal = _parse_ini_file($this->pathGlobal, true);
     if (empty($this->configGlobal) && $reportError) {
         Piwik_ExitWithMessage(Piwik::translate('General_ExceptionUnreadableFileDisabledMethod', array($this->pathGlobal, "parse_ini_file()")));
     }
     $this->configCommon = _parse_ini_file($this->pathCommon, true);
     // Check config.ini.php last
     $this->checkLocalConfigFound();
     $this->configLocal = _parse_ini_file($this->pathLocal, true);
     if (empty($this->configLocal) && $reportError) {
         Piwik_ExitWithMessage(Piwik::translate('General_ExceptionUnreadableFileDisabledMethod', array($this->pathLocal, "parse_ini_file()")));
     }
 }
开发者ID:pombredanne,项目名称:ArcherSys,代码行数:25,代码来源:Config.php

示例12: array

use Piwik\Cache\Eager;
use Piwik\SettingsServer;
return array('path.root' => PIWIK_USER_PATH, 'path.tmp' => function (ContainerInterface $c) {
    $root = $c->get('path.root');
    // TODO remove that special case and instead have plugins override 'path.tmp' to add the instance id
    if ($c->has('ini.General.instance_id')) {
        $instanceId = $c->get('ini.General.instance_id');
        $instanceId = $instanceId ? '/' . $instanceId : '';
    } else {
        $instanceId = '';
    }
    return $root . '/tmp' . $instanceId;
}, 'path.cache' => DI\string('{path.tmp}/cache/tracker/'), 'Piwik\\Cache\\Eager' => function (ContainerInterface $c) {
    $backend = $c->get('Piwik\\Cache\\Backend');
    $cacheId = $c->get('cache.eager.cache_id');
    if (SettingsServer::isTrackerApiRequest()) {
        $eventToPersist = 'Tracker.end';
        $cacheId .= 'tracker';
    } else {
        $eventToPersist = 'Request.dispatch.end';
        $cacheId .= 'ui';
    }
    $cache = new Eager($backend, $cacheId);
    \Piwik\Piwik::addAction($eventToPersist, function () use($cache) {
        $cache->persistCacheIfNeeded(43200);
    });
    return $cache;
}, 'Piwik\\Cache\\Backend' => function (ContainerInterface $c) {
    try {
        $backend = $c->get('ini.Cache.backend');
    } catch (NotFoundException $ex) {
开发者ID:nagyistoce,项目名称:piwik,代码行数:31,代码来源:global.php

示例13: makeStorage

 private function makeStorage(BackendInterface $backend)
 {
     if (SettingsServer::isTrackerApiRequest()) {
         $backend = new Backend\Cache($backend);
     }
     return new Storage($backend);
 }
开发者ID:piwik,项目名称:piwik,代码行数:7,代码来源:Factory.php

示例14: __destruct

 /**
  * Called at the end of the page generation
  */
 public function __destruct()
 {
     try {
         if (class_exists('Piwik\\Profiler') && !SettingsServer::isTrackerApiRequest()) {
             // in tracker mode Piwik\Tracker\Db\Pdo\Mysql does currently not implement profiling
             Profiler::displayDbProfileReport();
             Profiler::printQueryCount();
         }
     } catch (Exception $e) {
         Log::debug($e);
     }
 }
开发者ID:drabberhorizon,项目名称:ActiveNative,代码行数:15,代码来源:FrontController.php

示例15: restoreTrackerPlugins

 public static function restoreTrackerPlugins()
 {
     if (SettingsServer::isTrackerApiRequest() && Tracker::$initTrackerMode) {
         Plugin\Manager::getInstance()->loadTrackerPlugins();
     }
 }
开发者ID:FluentDevelopment,项目名称:piwik,代码行数:6,代码来源:Tracker.php


注:本文中的Piwik\SettingsServer::isTrackerApiRequest方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。