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:
authord-skora <d.skora@clearcode.cc>2014-10-06 20:05:42 +0400
committerd-skora <d.skora@clearcode.cc>2014-10-15 14:44:37 +0400
commite22ac8b2f0580ea76231acf930a2d1a56e1cad3b (patch)
tree9a058b655adac0ae938f0a65e20f35ac1f6606d9 /plugins/DBStats/API.php
parentfa99aef41e32849921f90d3b4d3ab0b5c0019004 (diff)
refactoring of code, fixes for hiding classes
Diffstat (limited to 'plugins/DBStats/API.php')
-rw-r--r--plugins/DBStats/API.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/DBStats/API.php b/plugins/DBStats/API.php
index f6443b12da..b0531fe606 100644
--- a/plugins/DBStats/API.php
+++ b/plugins/DBStats/API.php
@@ -13,14 +13,14 @@ use Piwik\DataTable;
use Piwik\Piwik;
/**
- * @hide ExceptForSuperUser
+ *
* @see plugins/DBStats/MySQLMetadataProvider.php
*/
require_once PIWIK_INCLUDE_PATH . '/plugins/DBStats/MySQLMetadataProvider.php';
/**
* DBStats API is used to request the overall status of the Mysql tables in use by Piwik.
- *
+ * @hideExceptForSuperUser
* @method static \Piwik\Plugins\DBStats\API getInstance()
*/
class API extends \Piwik\Plugin\API
@@ -42,6 +42,7 @@ class API extends \Piwik\Plugin\API
* Gets some general information about this Piwik installation, including the count of
* websites tracked, the count of users and the total space used by the database.
*
+ * @hide ExceptForSuperUser
* @return array Contains the website count, user count and total space used by the database.
*/
public function getGeneralInformation()