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:
Diffstat (limited to 'plugins/VisitorInterest/VisitorInterest.php')
-rw-r--r--plugins/VisitorInterest/VisitorInterest.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/VisitorInterest/VisitorInterest.php b/plugins/VisitorInterest/VisitorInterest.php
index d7004fe3a9..2b3c0aaa65 100644
--- a/plugins/VisitorInterest/VisitorInterest.php
+++ b/plugins/VisitorInterest/VisitorInterest.php
@@ -15,6 +15,18 @@
*/
class Piwik_VisitorInterest extends Piwik_Plugin
{
+ public function getInformation()
+ {
+ $info = array(
+ 'name' => 'VisitorInterest',
+ 'description' => 'Reports about the Visitor Interest: number of pages viewed, time spent on the Website.',
+ 'author' => 'Piwik',
+ 'homepage' => 'http://piwik.org/',
+ 'version' => '0.1',
+ );
+
+ return $info;
+ }
protected $timeGap = array(
array(0, 0.5),
@@ -41,18 +53,6 @@ class Piwik_VisitorInterest extends Piwik_Plugin
array(20)
);
- public function getInformation()
- {
- $info = array(
- 'name' => 'VisitorInterest',
- 'description' => 'Several stats related to the visitor interest',
- 'author' => 'Piwik',
- 'homepage' => 'http://piwik.org/',
- 'version' => '0.1',
- );
-
- return $info;
- }
function postLoad()
{