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:
Diffstat (limited to 'plugins/Ecommerce/Columns/Items.php')
-rw-r--r--plugins/Ecommerce/Columns/Items.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/Ecommerce/Columns/Items.php b/plugins/Ecommerce/Columns/Items.php
new file mode 100644
index 0000000000..834b020577
--- /dev/null
+++ b/plugins/Ecommerce/Columns/Items.php
@@ -0,0 +1,18 @@
+<?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\Columns;
+
+class Items extends BaseConversion
+{
+ protected $columnName = 'items';
+ protected $type = self::TYPE_NUMBER;
+ protected $category = 'Goals_Ecommerce';
+ protected $nameSingular = 'Ecommerce_NumberOfItems';
+
+} \ No newline at end of file