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-10-16 02:28:38 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-10-16 02:28:38 +0400
commit17605f0a8c4d01eafbca9f10ca4d7ba5db09fcb3 (patch)
treedc20e884cc5295c84b194d8a6da256f8cde9f5d0 /core/Visualization
parent5d64bfcc939b01135930e6c6d1e0b8b21fbfd5df (diff)
removed obsolet @see tags [ci skip]
Diffstat (limited to 'core/Visualization')
-rw-r--r--core/Visualization/Config.php16
-rw-r--r--core/Visualization/Request.php14
2 files changed, 1 insertions, 29 deletions
diff --git a/core/Visualization/Config.php b/core/Visualization/Config.php
index fcc3d65a0b..14081f32be 100644
--- a/core/Visualization/Config.php
+++ b/core/Visualization/Config.php
@@ -25,8 +25,6 @@ class Config
/**
* The list of ViewDataTable properties that are 'Client Side Properties'.
- *
- * @see Piwik\ViewDataTable\Visualization::getClientSideProperties
*/
public $clientSideProperties = array(
'show_limit_control'
@@ -34,8 +32,6 @@ class Config
/**
* The list of ViewDataTable properties that can be overriden by query parameters.
- *
- * @see Piwik\ViewDataTable\Visualization::getOverridableProperties
*/
public $overridableProperties = array(
'show_goals',
@@ -210,8 +206,6 @@ class Config
* change to the clicked report and the list will change so the original report can be
* navigated back to.
*
- * @see also self::TITLE. Both must be set if associating related reports.
- *
* Default value: array()
*/
public $related_reports = array();
@@ -220,7 +214,7 @@ class Config
* The report title. Used with related reports so report headings can be changed when switching
* reports.
*
- * @see also self::RELATED_REPORTS. This must be set if related reports are added.
+ * This must be set if related reports are added.
*
* Default value: ''
*/
@@ -355,8 +349,6 @@ class Config
* from a Related Report will go to a different URL. Can be used to load an entire page instead
* of a single report when going back to the original report.
*
- * @see also self::RELATED_REPORTS
- *
* Default value: The URL used to request the report without generic filters.
*/
public $self_url = '';
@@ -380,8 +372,6 @@ class Config
/**
* If true, searching through the DataTable will search through all subtables.
*
- * @see also self::FILTER_PATTERN
- *
* Default value: false
*/
public $search_recursive = false;
@@ -429,8 +419,6 @@ class Config
*
* TODO: pagination/offset is only valid for HtmlTables... should only display for those visualizations.
*
- * @see self::SHOW_OFFSET_INFORMATION
- *
* Default value: true
*/
public $show_pagination_control = true;
@@ -438,8 +426,6 @@ class Config
/**
* Controls whether offset information (ie, '5-10 of 20') is shown under the datatable.
*
- * @see self::SHOW_PAGINATION_CONTROL
- *
* Default value: true
*/
public $show_offset_information = true;
diff --git a/core/Visualization/Request.php b/core/Visualization/Request.php
index 8cf0a10a5c..bc32af2ff8 100644
--- a/core/Visualization/Request.php
+++ b/core/Visualization/Request.php
@@ -23,8 +23,6 @@ class Request
/**
* The list of ViewDataTable properties that are 'Client Side Parameters'.
- *
- * @see Piwik\ViewDataTable\Visualization::getClientSideParameters
*/
public $clientSideParameters = array(
'filter_excludelowpop',
@@ -36,8 +34,6 @@ class Request
/**
* The list of ViewDataTable properties that can be overriden by query parameters.
- *
- * @see Piwik\ViewDataTable\Visualization::getOverridableProperties
*/
public $overridableProperties = array(
'filter_sort_column',
@@ -63,8 +59,6 @@ class Request
* Controls the sort order. Either 'asc' or 'desc'.
*
* Default value: 'desc'
- *
- * @see self::SORTED_COLUMN
*/
public $filter_sort_order = 'desc';
@@ -72,8 +66,6 @@ class Request
* The number of items to truncate the data set to before rendering the DataTable view.
*
* Default value: false
- *
- * @see self::OFFSET
*/
public $filter_limit = false;
@@ -81,8 +73,6 @@ class Request
* The number of items from the start of the data set that should be ignored.
*
* Default value: 0
- *
- * @see self::LIMIT
*/
public $filter_offset = 0;
@@ -107,8 +97,6 @@ class Request
/**
* Stores the column name to filter when filtering out rows with low values.
*
- * @see also self::EXCLUDE_LOW_POPULATION_VALUE
- *
* Default value: false
*/
public $filter_excludelowpop = false;
@@ -116,8 +104,6 @@ class Request
/**
* Stores the value considered 'low' when filtering out rows w/ low values.
*
- * @see also self::EXCLUDE_LOW_POPULATION_COLUMN
- *
* Default value: false
* @var \Closure|string
*/