33 lines
872 B
PHP
33 lines
872 B
PHP
<?php
|
|
/**
|
|
* Piwik - free/libre analytics platform
|
|
*
|
|
* @link http://piwik.org
|
|
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
|
*
|
|
*/
|
|
namespace Piwik\Plugins\Ecommerce\Reports;
|
|
|
|
use Piwik\Metrics;
|
|
use Piwik\Piwik;
|
|
use Piwik\Plugins\Goals\Columns\DaysToConversion;
|
|
|
|
class GetDaysToConversionEcommerceOrder extends Base
|
|
{
|
|
protected function init()
|
|
{
|
|
parent::init();
|
|
|
|
$this->action = 'getDaysToConversion';
|
|
$this->name = Piwik::translate('General_EcommerceOrders') . ' - ' . Piwik::translate('Goals_DaysToConv');
|
|
$this->dimension = new DaysToConversion();
|
|
$this->constantRowsCount = true;
|
|
$this->processedMetrics = false;
|
|
$this->metrics = array('nb_conversions');
|
|
$this->order = 12;
|
|
|
|
$this->parameters = array('idGoal' => Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER);
|
|
}
|
|
|
|
}
|