site-accueil-insa/matomo/plugins/Ecommerce/Columns/ProductQuantity.php

21 lines
No EOL
510 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Ecommerce\Columns;
use Piwik\Columns\Dimension;
class ProductQuantity extends Dimension
{
protected $type = self::TYPE_NUMBER;
protected $dbTableName = 'log_conversion_item';
protected $columnName = 'quantity';
protected $nameSingular = 'Goals_ProductQuantity';
protected $category = 'Goals_Ecommerce';
}