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:
authorFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
committerFabian Becker <halfdan@xnorfz.de>2014-02-03 02:56:05 +0400
commit6b9ae92360cdd006cb3fc283ad2526e0ce9e1b34 (patch)
treee813ea3420b8199a8de8b2fe6d95f99b5ea69d86 /plugins/ImageGraph
parentf9d52ca9433e33783e59b209554dfba58f30cec4 (diff)
Remove remaining @package/@subpackage/@category declarations from plugins/
fixes #4609
Diffstat (limited to 'plugins/ImageGraph')
-rw-r--r--plugins/ImageGraph/API.php3
-rw-r--r--plugins/ImageGraph/Controller.php2
-rw-r--r--plugins/ImageGraph/ImageGraph.php2
-rw-r--r--plugins/ImageGraph/StaticGraph.php4
-rw-r--r--plugins/ImageGraph/StaticGraph/Evolution.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/Exception.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/GridGraph.php5
-rw-r--r--plugins/ImageGraph/StaticGraph/HorizontalBar.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/Pie.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/Pie3D.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/PieGraph.php3
-rw-r--r--plugins/ImageGraph/StaticGraph/VerticalBar.php3
12 files changed, 1 insertions, 36 deletions
diff --git a/plugins/ImageGraph/API.php b/plugins/ImageGraph/API.php
index a16167dd8c..532c9ef57c 100644
--- a/plugins/ImageGraph/API.php
+++ b/plugins/ImageGraph/API.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ImageGraph
*/
namespace Piwik\Plugins\ImageGraph;
@@ -32,7 +30,6 @@ use Piwik\Translate;
*
* See also <a href='http://piwik.org/docs/analytics-api/metadata/#toc-static-image-graphs'>How to embed static Image Graphs?</a> for more information.
*
- * @package ImageGraph
* @method static \Piwik\Plugins\ImageGraph\API getInstance()
*/
class API extends \Piwik\Plugin\API
diff --git a/plugins/ImageGraph/Controller.php b/plugins/ImageGraph/Controller.php
index 6cfefc92d0..dacfc8bfb8 100644
--- a/plugins/ImageGraph/Controller.php
+++ b/plugins/ImageGraph/Controller.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ImageGraph
*/
namespace Piwik\Plugins\ImageGraph;
diff --git a/plugins/ImageGraph/ImageGraph.php b/plugins/ImageGraph/ImageGraph.php
index 3e837ecce3..b11d26965c 100644
--- a/plugins/ImageGraph/ImageGraph.php
+++ b/plugins/ImageGraph/ImageGraph.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ImageGraph
*/
namespace Piwik\Plugins\ImageGraph;
diff --git a/plugins/ImageGraph/StaticGraph.php b/plugins/ImageGraph/StaticGraph.php
index 0fde9a2a8e..46fc9bde64 100644
--- a/plugins/ImageGraph/StaticGraph.php
+++ b/plugins/ImageGraph/StaticGraph.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package ImageGraph
*/
namespace Piwik\Plugins\ImageGraph;
@@ -26,8 +24,6 @@ require_once PIWIK_INCLUDE_PATH . "/libs/pChart2.1.3/class/pData.class.php";
/**
* The StaticGraph abstract class is used as a base class for different types of static graphs.
*
- * @package ImageGraph
- * @subpackage StaticGraph
*/
abstract class StaticGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/Evolution.php b/plugins/ImageGraph/StaticGraph/Evolution.php
index f1b1240364..32bc5bc92b 100644
--- a/plugins/ImageGraph/StaticGraph/Evolution.php
+++ b/plugins/ImageGraph/StaticGraph/Evolution.php
@@ -5,15 +5,12 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
class Evolution extends GridGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/Exception.php b/plugins/ImageGraph/StaticGraph/Exception.php
index fb39203a79..6ba920afab 100644
--- a/plugins/ImageGraph/StaticGraph/Exception.php
+++ b/plugins/ImageGraph/StaticGraph/Exception.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
@@ -15,7 +13,6 @@ use Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
class Exception extends StaticGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/GridGraph.php b/plugins/ImageGraph/StaticGraph/GridGraph.php
index 026c2952bc..02efb8d372 100644
--- a/plugins/ImageGraph/StaticGraph/GridGraph.php
+++ b/plugins/ImageGraph/StaticGraph/GridGraph.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
@@ -14,7 +12,6 @@ use Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
abstract class GridGraph extends StaticGraph
{
@@ -485,4 +482,4 @@ abstract class GridGraph extends StaticGraph
//
// return array($minValueIndex, $maxValueIndex);
// }
-} \ No newline at end of file
+}
diff --git a/plugins/ImageGraph/StaticGraph/HorizontalBar.php b/plugins/ImageGraph/StaticGraph/HorizontalBar.php
index ca01136f8c..b3b30637f2 100644
--- a/plugins/ImageGraph/StaticGraph/HorizontalBar.php
+++ b/plugins/ImageGraph/StaticGraph/HorizontalBar.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
use Piwik\Piwik;
@@ -14,7 +12,6 @@ use Piwik\Piwik;
/**
*
- * @package StaticGraph
*/
class HorizontalBar extends GridGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/Pie.php b/plugins/ImageGraph/StaticGraph/Pie.php
index 0f4b4cec9b..af54c638af 100644
--- a/plugins/ImageGraph/StaticGraph/Pie.php
+++ b/plugins/ImageGraph/StaticGraph/Pie.php
@@ -5,15 +5,12 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
class Pie extends PieGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/Pie3D.php b/plugins/ImageGraph/StaticGraph/Pie3D.php
index 4a7ab3ef06..81ec8c9320 100644
--- a/plugins/ImageGraph/StaticGraph/Pie3D.php
+++ b/plugins/ImageGraph/StaticGraph/Pie3D.php
@@ -5,15 +5,12 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
class Pie3D extends PieGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/PieGraph.php b/plugins/ImageGraph/StaticGraph/PieGraph.php
index 86c9852372..d28ca5010e 100644
--- a/plugins/ImageGraph/StaticGraph/PieGraph.php
+++ b/plugins/ImageGraph/StaticGraph/PieGraph.php
@@ -5,8 +5,6 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
@@ -18,7 +16,6 @@ require_once PIWIK_INCLUDE_PATH . "/libs/pChart2.1.3/class/pPie.class.php";
/**
*
- * @package StaticGraph
*/
abstract class PieGraph extends StaticGraph
{
diff --git a/plugins/ImageGraph/StaticGraph/VerticalBar.php b/plugins/ImageGraph/StaticGraph/VerticalBar.php
index a6456df02b..c5146d7c17 100644
--- a/plugins/ImageGraph/StaticGraph/VerticalBar.php
+++ b/plugins/ImageGraph/StaticGraph/VerticalBar.php
@@ -5,15 +5,12 @@
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
- * @category Piwik_Plugins
- * @package StaticGraph
*/
namespace Piwik\Plugins\ImageGraph\StaticGraph;
/**
*
- * @package StaticGraph
*/
class VerticalBar extends GridGraph
{