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

Admin.php « Controller « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1278b94d89806602e3e21ded8f2b26c590748474 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
/**
 * Piwik - Open source web analytics
 * 
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 * 
 * @category Piwik
 * @package Piwik
 */

/**
 * Parent class of all plugins Controllers with admin functions
 * 
 * @package Piwik
 */
abstract class Piwik_Controller_Admin extends Piwik_Controller
{
	/**
	 * Set the minimal variables in the view object
	 * Extended by some admin view specific variables
	 * 
	 * @param Piwik_View  $view
	 */
	protected function setBasicVariablesView($view)
	{
		parent::setBasicVariablesView($view);

		self::setBasicVariablesAdminView($view);
	}

	static public function setBasicVariablesAdminView($view)
	{
		$statsEnabled = Piwik_Config::getInstance()->Tracker['record_statistics'];
		if($statsEnabled == "0"){
			$view->statisticsNotRecorded = true;
		}

		$view->topMenu = Piwik_GetTopMenu();
		$view->currentAdminMenuName = Piwik_GetCurrentAdminMenuName();

		$view->enableFrames = Piwik_Config::getInstance()->General['enable_framed_settings'];
		if (!$view->enableFrames) {
			$view->setXFrameOptions('sameorigin');
		}
		
		$view->isSuperUser = Piwik::isUserIsSuperUser();
		
		// for old geoip plugin warning
		$view->usingOldGeoIPPlugin = Piwik_PluginsManager::getInstance()->isPluginActivated('GeoIP');
		
		// for cannot find installed plugin warning
		$missingPlugins = Piwik_PluginsManager::getInstance()->getMissingPlugins();
		if (!empty($missingPlugins))
		{
			$pluginsLink = Piwik_Url::getCurrentQueryStringWithParametersModified(array(
				'module' => 'CorePluginsAdmin', 'action' => 'index'
			));
			$view->missingPluginsWarning = Piwik_Translate('CoreAdminHome_MissingPluginsWarning', array(
				'<strong>'.implode('</strong>,&nbsp;<strong>', $missingPlugins).'</strong>',
				'<a href="'.$pluginsLink.'"/>',
				'</a>'
			));
		}
	}
}