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:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-02-05 13:38:13 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-02-05 13:38:13 +0300
commit12d4aa25c5103f98634ef6d210a03b134a0bd6b0 (patch)
treea69469e35a774d41ad7483c97c7f67f12212ef8c /plugins/VisitTime
parent32f1b2e7b72d41b3a3d12a85c6554042ef41b089 (diff)
- starting to organize reports, grouping 2 plugins reports together through the use of smarty event function (you can post event from smarty using the {postEvent name="NAME OF THE EVENT YOU CAN HOOK ON"}
Diffstat (limited to 'plugins/VisitTime')
-rw-r--r--plugins/VisitTime/VisitTime.php2
-rw-r--r--plugins/VisitTime/index.tpl4
2 files changed, 3 insertions, 3 deletions
diff --git a/plugins/VisitTime/VisitTime.php b/plugins/VisitTime/VisitTime.php
index 7f3eadef13..022ad48287 100644
--- a/plugins/VisitTime/VisitTime.php
+++ b/plugins/VisitTime/VisitTime.php
@@ -92,5 +92,5 @@ class Piwik_VisitTime extends Piwik_Plugin
Piwik_AddWidget( 'VisitTime', 'getVisitInformationPerLocalTime', 'Visits by local time');
Piwik_AddWidget( 'VisitTime', 'getVisitInformationPerServerTime', 'Visits by server time');
-Piwik_AddMenu('General', 'Time', array('module' => 'VisitTime'));
+Piwik_AddMenu('Visitors', 'Times', array('module' => 'VisitTime'));
diff --git a/plugins/VisitTime/index.tpl b/plugins/VisitTime/index.tpl
index 3987e8ca4f..aedae72d1d 100644
--- a/plugins/VisitTime/index.tpl
+++ b/plugins/VisitTime/index.tpl
@@ -1,5 +1,5 @@
- <h3>Visit per local time</h3>
+ <h2>Visit per local time</h2>
{$dataTableVisitInformationPerLocalTime}
- <h3>Visit per server time</h3>
+ <h2>Visit per server time</h2>
{$dataTableVisitInformationPerServerTime} \ No newline at end of file