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 'core/Tracker/Action.php')
-rw-r--r--core/Tracker/Action.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/core/Tracker/Action.php b/core/Tracker/Action.php
index b3ca851f61..149e9b59b9 100644
--- a/core/Tracker/Action.php
+++ b/core/Tracker/Action.php
@@ -36,10 +36,16 @@ abstract class Action
const TYPE_EVENT_ACTION = 11;
const TYPE_EVENT_NAME = 12;
+ const TYPE_CONTENT = 13; // Alias TYPE_CONTENT_PIECE
+ const TYPE_CONTENT_PIECE = 13;
+ const TYPE_CONTENT_NAME = 14;
+ const TYPE_CONTENT_TARGET = 15;
+ const TYPE_CONTENT_INTERACTION = 16;
+
const DB_COLUMN_CUSTOM_FLOAT = 'custom_float';
private static $factoryPriority = array(
- self::TYPE_PAGE_URL, self::TYPE_SITE_SEARCH, self::TYPE_EVENT, self::TYPE_OUTLINK, self::TYPE_DOWNLOAD
+ self::TYPE_PAGE_URL, self::TYPE_SITE_SEARCH, self::TYPE_EVENT, self::TYPE_CONTENT, self::TYPE_OUTLINK, self::TYPE_DOWNLOAD
);
/**