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:
authormattpiwik <matthieu.aubry@gmail.com>2008-08-19 05:22:09 +0400
committermattpiwik <matthieu.aubry@gmail.com>2008-08-19 05:22:09 +0400
commit08fdb96b420d832a8ce6141edff74f78181e25e2 (patch)
tree0c2fc60caa2116d72047d2541baf83aeb33ecc17 /plugins/DBStats/DBStats.php
parent7e68e020a4416f66651465b752e97b70ca480d1c (diff)
Slightly improving interface for the database usage report
git-svn-id: http://dev.piwik.org/svn/trunk@617 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/DBStats/DBStats.php')
-rw-r--r--plugins/DBStats/DBStats.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/DBStats/DBStats.php b/plugins/DBStats/DBStats.php
index c55155307a..c06304eae8 100644
--- a/plugins/DBStats/DBStats.php
+++ b/plugins/DBStats/DBStats.php
@@ -18,15 +18,16 @@ class Piwik_DBStats extends Piwik_Plugin
{
return array(
'name' => 'Databases statistics',
- 'description' => 'DBStats Plugin: This plugin returns database usage statistics.',
+ 'description' => 'This plugin reports the database usage by Piwik tables.',
'author' => 'Piwik',
'homepage' => 'http://piwik.org/',
'version' => '0.1',
);
}
+
function postLoad()
{
- Piwik_AddAdminMenu("Db", array('module' => 'DBStats', 'action' => 'index'));
+ Piwik_AddAdminMenu("Database usage", array('module' => 'DBStats', 'action' => 'index'));
}
}
\ No newline at end of file