Skip to content
Extraits de code Groupes Projets
Valider 9302709b rédigé par mattab's avatar mattab
Parcourir les fichiers

* fixing error/bug in Transition

  * Multi-Row evolution + Limit selector "10/50/100/500"  now works as expected
parent 47cda36e
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -74,12 +74,13 @@ class Piwik_CoreHome_DataTableRowAction_MultiRowEvolution ...@@ -74,12 +74,13 @@ class Piwik_CoreHome_DataTableRowAction_MultiRowEvolution
/** /**
* Generic method to get an evolution graph or a sparkline for the row evolution popover. * Generic method to get an evolution graph or a sparkline for the row evolution popover.
* Do as much as possible from outside the controller. * Do as much as possible from outside the controller.
*
* @return Piwik_ViewDataTable * @return Piwik_ViewDataTable
*/ */
public function getRowEvolutionGraph() public function getRowEvolutionGraph()
{ {
$view = parent::getRowEvolutionGraph(); $view = parent::getRowEvolutionGraph();
$view->setCustomParameter(self::IS_MULTI_EVOLUTION_PARAM, true); $view->setCustomParameter(self::IS_MULTI_EVOLUTION_PARAM, 1); // set in JS
return $view; return $view;
} }
} }
...@@ -139,7 +139,7 @@ class Piwik_Transitions_API ...@@ -139,7 +139,7 @@ class Piwik_Transitions_API
if ($id < 0) { if ($id < 0) {
// an example where this is needed is urls containing < or > // an example where this is needed is urls containing < or >
$actionName = $originalActionName; $actionName = $originalActionName;
$id = $actionsPlugin->getIdActionFromSegment($actionName, 'idaction_url', Piwik_SegmentExpression::MATCH_EQUALs, 'pageUrl'); $id = $actionsPlugin->getIdActionFromSegment($actionName, 'idaction_url', Piwik_SegmentExpression::MATCH_EQUAL, 'pageUrl');
} }
return $id; return $id;
...@@ -289,9 +289,6 @@ class Piwik_Transitions_API ...@@ -289,9 +289,6 @@ class Piwik_Transitions_API
} }
} }
/**
* @ignore
*/
public function getTranslations() public function getTranslations()
{ {
$controller = new Piwik_Transitions_Controller(); $controller = new Piwik_Transitions_Controller();
......
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