قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-23 23:47:37 +00:00

* Allow adding separate dimension columns in API requests * Add option to report export overlay to include dimensions separately for a flattened report * updates expected test files * Adds System test for new api parameter --------- Co-authored-by: caddoo <1169490+caddoo@users.noreply.github.com>
157 خطوط
4.3 KiB
PHP
157 خطوط
4.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Matomo - free/libre analytics platform
|
|
*
|
|
* @link https://matomo.org
|
|
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*/
|
|
|
|
namespace Piwik\Plugins\CoreVisualizations\Visualizations\HtmlTable;
|
|
|
|
use Piwik\ViewDataTable\Config as VisualizationConfig;
|
|
|
|
/**
|
|
* DataTable Visualization that derives from HtmlTable and sets show_extra_columns to true.
|
|
*/
|
|
class Config extends VisualizationConfig
|
|
{
|
|
/**
|
|
* If this property is set to true, subtables will be shown as embedded in the original table.
|
|
* If false, subtables will be shown as whole tables between rows.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $show_embedded_subtable = false;
|
|
|
|
/**
|
|
* Controls whether the entire DataTable should be rendered (including subtables) or just one
|
|
* specific table in the tree.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $show_expanded = false;
|
|
|
|
/**
|
|
* When showing an expanded datatable, this property controls whether rows with subtables are
|
|
* replaced with their subtables, or if they are shown alongside their subtables.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $replace_row_with_subtable = false;
|
|
|
|
/**
|
|
* Controls whether any DataTable Row Action icons are shown. If true, no icons are shown.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $disable_row_actions = false;
|
|
|
|
/**
|
|
* Controls whether the row evolution DataTable Row Action icon is shown or not.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $disable_row_evolution = false;
|
|
|
|
/**
|
|
* Controls whether the summary row is displayed on every page of the datatable view or not.
|
|
* If false, the summary row will be treated as the last row of the dataset and will only visible
|
|
* when viewing the last rows.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $keep_summary_row = false;
|
|
|
|
/**
|
|
* If true, the 'label', 'nb_visits', 'nb_uniq_visitors' (if present), 'nb_actions',
|
|
* 'nb_actions_per_visit', 'avg_time_on_site', 'bounce_rate' and 'conversion_rate' (if
|
|
* goals view is not allowed) are displayed.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $show_extra_columns = false;
|
|
|
|
/**
|
|
* If true, conversions for each existing goal will be displayed for the visits in
|
|
* each row.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $show_goals_columns = false;
|
|
|
|
/**
|
|
* If true, subtables will not be loaded when rows are clicked, but only if the
|
|
* 'show_goals_columns' property is also true.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $disable_subtable_when_show_goals = false;
|
|
|
|
/**
|
|
* If true, the summary row will be colored differently than all other DataTable rows.
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $highlight_summary_row = false;
|
|
|
|
/**
|
|
* If true, the totals row will be shown
|
|
*
|
|
* Default value: false
|
|
*/
|
|
public $show_totals_row = true;
|
|
|
|
/**
|
|
* A list of columns that support showing the ratio percentage on hover
|
|
* @var array
|
|
*/
|
|
public $report_ratio_columns = array();
|
|
|
|
/**
|
|
* The minimum width for the label column in table visualizations.
|
|
*
|
|
* @var null|int
|
|
*/
|
|
public $min_label_width = 125;
|
|
|
|
/**
|
|
* The maximum allowed width for the label column in table visualizations.
|
|
*
|
|
* @var null|int
|
|
*/
|
|
public $max_label_width = 440;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->enable_sort = true;
|
|
$this->datatable_js_type = 'DataTable';
|
|
|
|
$this->addPropertiesThatShouldBeAvailableClientSide(array(
|
|
'show_extra_columns',
|
|
'show_goals_columns',
|
|
'disable_row_evolution',
|
|
'disable_row_actions',
|
|
'enable_sort',
|
|
'keep_summary_row',
|
|
'subtable_controller_action',
|
|
'row_identifier',
|
|
'min_label_width',
|
|
'max_label_width',
|
|
));
|
|
|
|
$this->addPropertiesThatCanBeOverwrittenByQueryParams(array(
|
|
'show_expanded',
|
|
'disable_row_actions',
|
|
'disable_row_evolution',
|
|
'show_extra_columns',
|
|
'show_goals_columns',
|
|
'disable_subtable_when_show_goals',
|
|
'keep_summary_row',
|
|
'highlight_summary_row',
|
|
));
|
|
}
|
|
}
|