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:
authorThomas Steur <thomas.steur@gmail.com>2013-12-03 05:10:28 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 05:10:28 +0400
commita347ebc205ad31ef7cdfe00fa104788879779ea1 (patch)
tree947fb9c5319dad48f7fbd7afbfee6ae2c1dbc73c /core/ViewDataTable
parent685e25363a0bc5f4c9eb8d38dd24fee337b742da (diff)
refs #4244 converted more links
Diffstat (limited to 'core/ViewDataTable')
-rw-r--r--core/ViewDataTable/Config.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/core/ViewDataTable/Config.php b/core/ViewDataTable/Config.php
index 612e10f82b..493d67eab0 100644
--- a/core/ViewDataTable/Config.php
+++ b/core/ViewDataTable/Config.php
@@ -36,10 +36,10 @@ use Piwik\Plugins\API\API;
* it, extend this class and add your properties as fields.
*
* Properties are marked as client side properties by calling the
- * [addPropertiesThatShouldBeAvailableClientSide](#addPropertiesThatShouldBeAvailableClientSide) method.
+ * {@link addPropertiesThatShouldBeAvailableClientSide()} method.
*
* Properties are marked as overridable by calling the
- * [addPropertiesThatCanBeOverwrittenByQueryParams](#addPropertiesThatCanBeOverwrittenByQueryParams) method.
+ * {@link addPropertiesThatCanBeOverwrittenByQueryParams()} method.
*
* ### Example
*
@@ -534,7 +534,7 @@ class Config
}
/**
- * Adds a related report to the [related_reports](#related_reports) property. If the report
+ * Adds a related report to the {@link $related_reports} property. If the report
* references the one that is currently being displayed, it will not be added to the related
* report list.
*
@@ -558,12 +558,12 @@ class Config
}
/**
- * Adds several related reports to the [related_reports](#related_reports) property. If
+ * Adds several related reports to the {@link $related_reports} property. If
* any of the reports references the report that is currently being displayed, it will not
* be added to the list. All other reports will still be added though.
*
* If you need to make sure the related report URL has some extra query parameters,
- * use [addRelatedReport](#addRelatedReport).
+ * use {@link addRelatedReport()}.
*
* @param array $relatedReports Array mapping report IDs with their internationalized display
* titles, eg,
@@ -584,7 +584,7 @@ class Config
/**
* Associates internationalized text with a metric. Overwrites existing mappings.
*
- * See [translations](#translations).
+ * See {@link $translations}.
*
* @param string $columnName The name of a column in the report data, eg, `'nb_visits'` or
* `'goal_1_nb_conversions'`.
@@ -598,7 +598,7 @@ class Config
/**
* Associates multiple translations with metrics.
*
- * See [translations](#translations) and [addTranslation](#addTranslation).
+ * See {@link $translations} and {@link addTranslation()}.
*
* @param array $translations An array of column name => text mappings, eg,
* ```