| <?php |
|
|
| |
| |
| |
| |
| |
| |
|
|
| namespace Piwik\Plugins\Goals\Columns\Metrics; |
|
|
| use Piwik\Archive\DataTableFactory; |
| use Piwik\Columns\Dimension; |
| use Piwik\DataTable; |
| use Piwik\DataTable\Row; |
| use Piwik\Metrics; |
| use Piwik\Metrics\Formatter; |
| use Piwik\Piwik; |
| use Piwik\Plugin\ProcessedMetric; |
| use Piwik\Tracker\GoalManager; |
|
|
| |
| |
| |
| |
| |
| |
| |
| class RevenuePerVisit extends ProcessedMetric |
| { |
| private $idSite; |
|
|
| public function getName() |
| { |
| return 'revenue_per_visit'; |
| } |
|
|
| public function getTranslatedName() |
| { |
| return Piwik::translate('General_ColumnValuePerVisit'); |
| } |
|
|
| public function getDocumentation() |
| { |
| return Piwik::translate('General_ColumnValuePerVisitDocumentation'); |
| } |
|
|
| public function getDependentMetrics() |
| { |
| return array('revenue', 'nb_visits', 'nb_conversions','goals'); |
| } |
|
|
| public function compute(Row $row) |
| { |
| $mappingFromNameToIdGoal = Metrics::getMappingFromNameToIdGoal(); |
| $goals = $this->getMetric($row, 'goals') ?: array(); |
|
|
| $revenue = 0; |
| foreach ($goals as $goalId => $goalMetrics) { |
| if (is_numeric($goalId) && $goalId < GoalManager::IDGOAL_ORDER) { |
| continue; |
| } |
|
|
| if (!is_numeric($goalId) && $goalId != Piwik::LABEL_ID_GOAL_IS_ECOMMERCE_ORDER) { |
| continue; |
| } |
|
|
| $revenue += (int) $this->getMetric($goalMetrics, 'revenue', $mappingFromNameToIdGoal); |
| } |
|
|
| if ($revenue == 0) { |
| $revenue = (int) $this->getMetric($row, 'revenue'); |
| } |
|
|
| $nbVisits = (int) $this->getMetric($row, 'nb_visits'); |
| $conversions = (int) $this->getMetric($row, 'nb_conversions'); |
|
|
| |
| |
| return Piwik::getQuotientSafe($revenue, $nbVisits == 0 ? $conversions : $nbVisits, GoalManager::REVENUE_PRECISION); |
| } |
|
|
| public function format($value, Formatter $formatter) |
| { |
| return $formatter->getPrettyMoney($value, $this->idSite); |
| } |
|
|
| public function beforeFormat($report, DataTable $table) |
| { |
| $this->idSite = DataTableFactory::getSiteIdFromMetadata($table); |
| return !empty($this->idSite); |
| } |
|
|
| public function getSemanticType(): ?string |
| { |
| return Dimension::TYPE_MONEY; |
| } |
| } |
|
|