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

DBStats.php « DBStats « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01a745c3ef2cd65d62d4612bf72a6a921501a00e (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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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_Plugins
 * @package Piwik_DBStats
 */

/**
 *
 * @package Piwik_DBStats
 */
class Piwik_DBStats extends Piwik_Plugin
{
	const TIME_OF_LAST_TASK_RUN_OPTION = 'dbstats_time_of_last_cache_task_run';
	
	public function getInformation()
	{
		return array(
			'description' => Piwik_Translate('DBStats_PluginDescription'),
			'author' => 'Piwik',
			'author_homepage' => 'http://piwik.org/',
			'version' => Piwik_Version::VERSION,
		);
	}

	function getListHooksRegistered()
	{
		return array(
			'AdminMenu.add' => 'addMenu',
            'TaskScheduler.getScheduledTasks' => 'getScheduledTasks',
		);
	}
	
	function addMenu()
	{
		Piwik_AddAdminSubMenu('CoreAdminHome_MenuDiagnostic', 'DBStats_DatabaseUsage', 
							array('module' => 'DBStats', 'action' => 'index'),
							Piwik::isUserIsSuperUser(),
							$order = 9);		
	}

	/**
	 * Gets all scheduled tasks executed by this plugin.
	 * 
	 * @param Piwik_Event_Notification $notification  notification object
	 */
	public function getScheduledTasks($notification)
	{
		$tasks = &$notification->getNotificationObject();

		$cacheDataByArchiveNameReportsTask = new Piwik_ScheduledTask(
			$this,
			'cacheDataByArchiveNameReports',
			null,
			new Piwik_ScheduledTime_Weekly(),
			Piwik_ScheduledTask::LOWEST_PRIORITY
		);
		$tasks[] = $cacheDataByArchiveNameReportsTask;
	}
	
	/**
	 * Caches the intermediate DataTables used in the getIndividualReportsSummary and
	 * getIndividualMetricsSummary reports in the option table.
	 */
	public function cacheDataByArchiveNameReports()
	{
		$api = Piwik_DBStats_API::getInstance();
		$api->getIndividualReportsSummary(true);
		$api->getIndividualMetricsSummary(true);
		
		$now = Piwik_Date::now()->getLocalized("%longYear%, %shortMonth% %day%");
		Piwik_SetOption(self::TIME_OF_LAST_TASK_RUN_OPTION, $now);
	}
	
	/** Returns the date when the cacheDataByArchiveNameReports was last run. */
	public static function getDateOfLastCachingRun()
	{
		return Piwik_GetOption(self::TIME_OF_LAST_TASK_RUN_OPTION);
	}
}