Skip to content
Extraits de code Groupes Projets
Valider 5e577e7e rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

refs #4996 fix tracker and clear content target if not set for now

parent 5e461d49
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -235,6 +235,7 @@ class TableLogAction ...@@ -235,6 +235,7 @@ class TableLogAction
'contentPiece' => Action::TYPE_CONTENT_PIECE, 'contentPiece' => Action::TYPE_CONTENT_PIECE,
'contentTarget' => Action::TYPE_CONTENT_TARGET, 'contentTarget' => Action::TYPE_CONTENT_TARGET,
'contentName' => Action::TYPE_CONTENT_NAME, 'contentName' => Action::TYPE_CONTENT_NAME,
'contentInteraction' => Action::TYPE_CONTENT_INTERACTION,
); );
if(!empty($exactMatch[$segmentName])) { if(!empty($exactMatch[$segmentName])) {
return $exactMatch[$segmentName]; return $exactMatch[$segmentName];
......
...@@ -899,7 +899,7 @@ class PiwikTracker ...@@ -899,7 +899,7 @@ class PiwikTracker
throw new Exception("You must specify a content name"); throw new Exception("You must specify a content name");
} }
$url .= 'c_n=' . urlencode($contentName); $url .= '&c_n=' . urlencode($contentName);
if (!empty($contentPiece) && strlen($contentPiece) > 0) { if (!empty($contentPiece) && strlen($contentPiece) > 0) {
$url .= '&c_p=' . urlencode($contentPiece); $url .= '&c_p=' . urlencode($contentPiece);
...@@ -934,8 +934,8 @@ class PiwikTracker ...@@ -934,8 +934,8 @@ class PiwikTracker
throw new Exception("You must specify a content name"); throw new Exception("You must specify a content name");
} }
$url .= 'c_i=' . urlencode($interaction); $url .= '&c_i=' . urlencode($interaction);
$url .= 'c_n=' . urlencode($contentName); $url .= '&c_n=' . urlencode($contentName);
if (!empty($contentPiece) && strlen($contentPiece) > 0) { if (!empty($contentPiece) && strlen($contentPiece) > 0) {
$url .= '&c_p=' . urlencode($contentPiece); $url .= '&c_p=' . urlencode($contentPiece);
......
...@@ -13,6 +13,7 @@ use Piwik\DataTable; ...@@ -13,6 +13,7 @@ use Piwik\DataTable;
use Piwik\DataTable\Row; use Piwik\DataTable\Row;
use Piwik\Metrics; use Piwik\Metrics;
use Piwik\Piwik; use Piwik\Piwik;
use Piwik\Plugins\Contents\Archiver;
/** /**
* API for plugin Contents * API for plugin Contents
...@@ -54,6 +55,11 @@ class API extends \Piwik\Plugin\API ...@@ -54,6 +55,11 @@ class API extends \Piwik\Plugin\API
if ($row) { if ($row) {
$row->setColumn('label', Piwik::translate('General_NotDefined', Piwik::translate('Contents_ContentPiece'))); $row->setColumn('label', Piwik::translate('General_NotDefined', Piwik::translate('Contents_ContentPiece')));
} }
foreach ($table->getRows() as $row) {
if ($row->getMetadata('contentTarget') === Archiver::CONTENT_TARGET_NOT_SET) {
$row->setMetadata('contentTarget', '');
}
}
}); });
// Content interaction rate = interactions / impressions // Content interaction rate = interactions / impressions
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter