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:
authorsgiehl <stefangiehl@gmail.com>2012-05-24 01:19:25 +0400
committersgiehl <stefangiehl@gmail.com>2012-05-24 01:19:25 +0400
commitf419aca5cae09792f879e5570c51da699d658599 (patch)
treed67c5aa457067a17e031c44309f20292eaaa1d8d /core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php
parent145bd36f2bc1183442415ea3f0d2fc42970be207 (diff)
completed a bunch of php doc blocks
git-svn-id: http://dev.piwik.org/svn/trunk@6300 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php')
-rw-r--r--core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php b/core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php
index 89174fe792..48d147d732 100644
--- a/core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php
+++ b/core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php
@@ -29,23 +29,23 @@ class Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal extends Piwik_DataTa
* Process all goal and per-goal metrics
*/
const GOALS_FULL_TABLE = 0;
-
+
/**
- * Adds processed goal metrics to a table:
- * - global conversion rate,
+ * Adds processed goal metrics to a table:
+ * - global conversion rate,
* - global revenue per visit.
* Can also process per-goal metrics:
* - conversion rate
* - nb conversions
* - revenue per visit
- *
+ *
* @param Piwik_DataTable $table
* @param bool $enable should be true (automatically set to true when filter_update_columns_when_show_all_goals is found in the API request)
* @param string $processOnlyIdGoal Defines what metrics to add (don't process metrics when you don't display them)
- * If self::GOALS_FULL_TABLE, all Goal metrics (and per goal metrics) will be processed
- * If self::GOALS_OVERVIEW, only the main goal metrics will be added
- * If an int > 0, then will process only metrics for this specific Goal
- * @return void
+ * If self::GOALS_FULL_TABLE, all Goal metrics (and per goal metrics) will be processed
+ * If self::GOALS_OVERVIEW, only the main goal metrics will be added
+ * If an int > 0, then will process only metrics for this specific Goal
+ * @return Piwik_DataTable_Filter_AddColumnsProcessedMetricsGoal
*/
public function __construct( $table, $enable = true, $processOnlyIdGoal )
{