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:
authorvipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-08-22 17:23:16 +0400
committervipsoft <vipsoft@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-08-22 17:23:16 +0400
commit17648f51b30317ea27d1027dbe68eeab81ed2fa0 (patch)
tree436d3d9c8546deb59b8f307dd5b20cd1a60d407f /plugins/Dashboard
parentacfca79b4d787d6ae526e4d803dc8bcc29ee78e3 (diff)
phpdoc cleanup:
* add @category (Piwik => 'core', Piwik_Plugins => 'plugins') * in core, use @package and @subpackage more consistently to group files/classes; exception is DataFiles/*, PluginsFunctions/*, and SmartyPlugins/* * in plugins, @package is the plugin name * removed '@param none' -- not a phpdoc convention * '@throws' and '@return void' are also not phpdoc conventions, but are widely used elsewhere, e.g., Smarty & Zend
Diffstat (limited to 'plugins/Dashboard')
-rw-r--r--plugins/Dashboard/Controller.php5
-rw-r--r--plugins/Dashboard/Dashboard.php7
2 files changed, 9 insertions, 3 deletions
diff --git a/plugins/Dashboard/Controller.php b/plugins/Dashboard/Controller.php
index 34416015f2..6d9120bcfa 100644
--- a/plugins/Dashboard/Controller.php
+++ b/plugins/Dashboard/Controller.php
@@ -6,11 +6,12 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
*
- * @package Piwik_CoreHome
- *
+ * @category Piwik_Plugins
+ * @package Piwik_Dashboard
*/
/**
+ *
* @package Piwik_Dashboard
*/
class Piwik_Dashboard_Controller extends Piwik_Controller
diff --git a/plugins/Dashboard/Dashboard.php b/plugins/Dashboard/Dashboard.php
index 29bf3b9df5..3f31bd21ac 100644
--- a/plugins/Dashboard/Dashboard.php
+++ b/plugins/Dashboard/Dashboard.php
@@ -6,9 +6,14 @@
* @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
* @version $Id$
*
- * @package Piwik_ExamplePlugin
+ * @category Piwik_Plugins
+ * @package Piwik_Dashboard
*/
+/**
+ *
+ * @package Piwik_Dashboard
+ */
class Piwik_Dashboard extends Piwik_Plugin
{
public function getInformation()