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/ProductName.php')
-rw-r--r--plugins/Ecommerce/Columns/ProductName.php21
1 files changed, 18 insertions, 3 deletions
diff --git a/plugins/Ecommerce/Columns/ProductName.php b/plugins/Ecommerce/Columns/ProductName.php
index 8c9d43c8a6..ab7033a507 100644
--- a/plugins/Ecommerce/Columns/ProductName.php
+++ b/plugins/Ecommerce/Columns/ProductName.php
@@ -9,12 +9,27 @@
namespace Piwik\Plugins\Ecommerce\Columns;
use Piwik\Columns\Dimension;
-use Piwik\Piwik;
+use Piwik\Columns\Discriminator;
+use Piwik\Columns\Join\ActionNameJoin;
+use Piwik\Tracker\Action;
class ProductName extends Dimension
{
- public function getName()
+ protected $type = self::TYPE_TEXT;
+ protected $dbTableName = 'log_conversion_item';
+ protected $columnName = 'idaction_name';
+ protected $nameSingular = 'Goals_ProductName';
+ protected $namePlural = 'Goals_ProductNames';
+ protected $category = 'Goals_Ecommerce';
+
+ public function getDbColumnJoin()
{
- return Piwik::translate('Goals_ProductName');
+ return new ActionNameJoin();
}
+
+ public function getDbDiscriminator()
+ {
+ return new Discriminator('log_action', 'type', Action::TYPE_ECOMMERCE_ITEM_NAME);
+ }
+
} \ No newline at end of file