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 03:02:24 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-12-03 03:02:24 +0400
commitb40e4d1da3296b05e5aa1abe64ee12548023da77 (patch)
tree74152033cf00301e04c640cf1ac9fe036bf31f19 /core/Plugin/ViewDataTable.php
parent9b12e776ce827fd552c40a0e7ec3d12e98e2f552 (diff)
converted some links to use @link
Diffstat (limited to 'core/Plugin/ViewDataTable.php')
-rw-r--r--core/Plugin/ViewDataTable.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/core/Plugin/ViewDataTable.php b/core/Plugin/ViewDataTable.php
index 511babdd7d..204c25a9fa 100644
--- a/core/Plugin/ViewDataTable.php
+++ b/core/Plugin/ViewDataTable.php
@@ -29,7 +29,7 @@ use Piwik\ViewDataTable\RequestConfig as VizRequest;
* type of visualization of that data.
*
* Visualizations can be in any format. HTML-based visualizations should derive from
- * [Visualization](#). Visualizations that use other formats, such as visualizations
+ * {@link Visualization}. Visualizations that use other formats, such as visualizations
* that output an image, should extend ViewDataTable directly.
*
* ### Configuring ViewDataTables
@@ -37,8 +37,8 @@ use Piwik\ViewDataTable\RequestConfig as VizRequest;
* **Display properties**
*
* ViewDataTable output can be customized by setting one of many available display
- * properties. Display properties are stored as fields in [Config](#) objects. ViewDataTables
- * store a [Config](#) object in the [config](#config) field.
+ * properties. Display properties are stored as fields in {@link Piwik\ViewDataTable\Config} objects. ViewDataTables
+ * store a {@link Piwik\ViewDataTable\Config} object in the {@link $config} field.
*
* Display properties can be set at any time before rendering.
*
@@ -48,8 +48,8 @@ use Piwik\ViewDataTable\RequestConfig as VizRequest;
* however, not used to customize ViewDataTable instances, but in the request to Piwik's
* API when loading analytics data.
*
- * Request parameters are set by setting the fields of a [RequestConfig](#) object stored in
- * the [requestConfig](#requestConfig) field. They can be set at any time before rendering.
+ * Request parameters are set by setting the fields of a {@link Piwik\ViewDataTable\RequestConfig} object stored in
+ * the {@link $requestConfig} field. They can be set at any time before rendering.
* Setting them after data is loaded will have no effect.
*
* **Customizing how reports are displayed**