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:
authorChristian Raue <christian.raue@gmail.com>2014-07-16 16:35:43 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-19 12:31:16 +0400
commit893801a082a173e645f31f00b4f6ef1ed29bb512 (patch)
tree51e97ba555310a9e330cf648d7e9eff23919eb53 /plugins/ImageGraph
parenta054de65ed078a7786033f8e2793438ecdb65840 (diff)
fixed field visibility keyword order
Diffstat (limited to 'plugins/ImageGraph')
-rw-r--r--plugins/ImageGraph/API.php4
-rw-r--r--plugins/ImageGraph/ImageGraph.php4
-rw-r--r--plugins/ImageGraph/StaticGraph.php2
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/ImageGraph/API.php b/plugins/ImageGraph/API.php
index 1aa5348b60..1ce331d9d8 100644
--- a/plugins/ImageGraph/API.php
+++ b/plugins/ImageGraph/API.php
@@ -41,7 +41,7 @@ class API extends \Piwik\Plugin\API
const MAX_WIDTH = 2048;
const MAX_HEIGHT = 2048;
- static private $DEFAULT_PARAMETERS = array(
+ private static $DEFAULT_PARAMETERS = array(
StaticGraph::GRAPH_TYPE_BASIC_LINE => array(
self::FILENAME_KEY => 'BasicLine',
self::TRUNCATE_KEY => 6,
@@ -74,7 +74,7 @@ class API extends \Piwik\Plugin\API
),
);
- static private $DEFAULT_GRAPH_TYPE_OVERRIDE = array(
+ private static $DEFAULT_GRAPH_TYPE_OVERRIDE = array(
'UserSettings_getPlugin' => array(
false // override if !$isMultiplePeriod
=> StaticGraph::GRAPH_TYPE_HORIZONTAL_BAR,
diff --git a/plugins/ImageGraph/ImageGraph.php b/plugins/ImageGraph/ImageGraph.php
index bcc6833b89..0344d8567f 100644
--- a/plugins/ImageGraph/ImageGraph.php
+++ b/plugins/ImageGraph/ImageGraph.php
@@ -27,12 +27,12 @@ class ImageGraph extends \Piwik\Plugin
return $info;
}
- static private $CONSTANT_ROW_COUNT_REPORT_EXCEPTIONS = array(
+ private static $CONSTANT_ROW_COUNT_REPORT_EXCEPTIONS = array(
'Referrers_getReferrerType',
);
// row evolution support not yet implemented for these APIs
- static private $REPORTS_DISABLED_EVOLUTION_GRAPH = array(
+ private static $REPORTS_DISABLED_EVOLUTION_GRAPH = array(
'Referrers_getAll',
);
diff --git a/plugins/ImageGraph/StaticGraph.php b/plugins/ImageGraph/StaticGraph.php
index b21d5e35ac..0ece9a173d 100644
--- a/plugins/ImageGraph/StaticGraph.php
+++ b/plugins/ImageGraph/StaticGraph.php
@@ -32,7 +32,7 @@ abstract class StaticGraph
const GRAPH_TYPE_3D_PIE = "3dPie";
const GRAPH_TYPE_BASIC_PIE = "pie";
- static private $availableStaticGraphTypes = array(
+ private static $availableStaticGraphTypes = array(
self::GRAPH_TYPE_BASIC_LINE => 'Evolution',
self::GRAPH_TYPE_VERTICAL_BAR => 'VerticalBar',
self::GRAPH_TYPE_HORIZONTAL_BAR => 'HorizontalBar',