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:
authorThomas Steur <tsteur@users.noreply.github.com>2018-12-11 09:30:42 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-12-11 09:30:42 +0300
commita06e2d5c27e0172b6de647c6754b9eead5ed0b36 (patch)
tree907efbc6f18aa1a7a514a716b9fccb63aa512900 /plugins/Transitions/Transitions.php
parentef5b071576e06dda758d2a0855058aef11b160fd (diff)
Add new transitions report (#13475)3.8.0-b4
* trying to add a report through visualization * refs #12865 added transitions report * small tweak * remove auto generated api * apply review feedback * add ui test, fix widget view * fix ui test * fix tests * update screenshots * fix various issues * trying to fix tests * fix tests * Update expected screenshot tests. * Try to fix random failure & update screenshots. * add help text, add icon, do not fetch anything when no action name * trying to fix tests * tweak code * run tests again * Update expected screenshots.
Diffstat (limited to 'plugins/Transitions/Transitions.php')
-rw-r--r--plugins/Transitions/Transitions.php8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/Transitions/Transitions.php b/plugins/Transitions/Transitions.php
index c1c10d8b81..fd28fb9be6 100644
--- a/plugins/Transitions/Transitions.php
+++ b/plugins/Transitions/Transitions.php
@@ -14,7 +14,7 @@ namespace Piwik\Plugins\Transitions;
class Transitions extends \Piwik\Plugin
{
/**
- * @see Piwik\Plugin::registerEvents
+ * @see \Piwik\Plugin::registerEvents
*/
public function registerEvents()
{
@@ -33,11 +33,17 @@ class Transitions extends \Piwik\Plugin
public function getJsFiles(&$jsFiles)
{
$jsFiles[] = 'plugins/Transitions/javascripts/transitions.js';
+ $jsFiles[] = 'plugins/Transitions/angularjs/transitionswitcher/transitionswitcher.controller.js';
}
public function getClientSideTranslationKeys(&$translationKeys)
{
$translationKeys[] = 'General_TransitionsRowActionTooltipTitle';
$translationKeys[] = 'General_TransitionsRowActionTooltip';
+ $translationKeys[] = 'Actions_PageUrls';
+ $translationKeys[] = 'Actions_WidgetPageTitles';
+ $translationKeys[] = 'Transitions_NumPageviews';
+ $translationKeys[] = 'CoreHome_ThereIsNoDataForThisReport';
+ $translationKeys[] = 'General_Others';
}
}