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-03 23:13:45 +0300
committerStefan Giehl <stefan@piwik.org>2018-12-03 23:13:45 +0300
commit8b247a856e14ee5a246182ecf808804bf029b7e0 (patch)
tree0d4b5a35108462f5f1e910074112feca1d8067bb /plugins/Events
parented877857e59ec5434153e7142b75f67208ef428e (diff)
Add title, subtitle, and icon to all live actions (#13454)
* add title, subtitle, and icon to all live actions * Add translations and tweak wording * fix possible error * fix incorrect closed if statement * updates expected test files * update submodule
Diffstat (limited to 'plugins/Events')
-rw-r--r--plugins/Events/VisitorDetails.php14
-rw-r--r--plugins/Events/lang/en.json1
2 files changed, 14 insertions, 1 deletions
diff --git a/plugins/Events/VisitorDetails.php b/plugins/Events/VisitorDetails.php
index ecf76847d8..5644874469 100644
--- a/plugins/Events/VisitorDetails.php
+++ b/plugins/Events/VisitorDetails.php
@@ -9,8 +9,8 @@
namespace Piwik\Plugins\Events;
+use Piwik\Piwik;
use Piwik\Plugins\Live\VisitorDetailsAbstract;
-use Piwik\Tracker\Action;
use Piwik\View;
class VisitorDetails extends VisitorDetailsAbstract
@@ -22,6 +22,18 @@ class VisitorDetails extends VisitorDetailsAbstract
if (!empty($action['eventType'])) {
$action['type'] = 'event';
$action['icon'] = 'plugins/Morpheus/images/event.png';
+ $action['title'] = Piwik::translate('Events_Event');
+ $action['subtitle'] = Piwik::translate('Event_Category') . ': "' . $action['eventCategory'] . "'";
+
+ if (!empty($action['eventName'])) {
+ $action['subtitle'] .= ', ' . Piwik::translate('General_Name') . ': "' . $action['eventName'] . '"';
+ }
+ if (!empty($action['eventAction'])) {
+ $action['subtitle'] .= ', ' . Piwik::translate('General_Action') . ': "' . $action['eventAction'] . '"';
+ }
+ if (!empty($action['eventValue'])) {
+ $action['subtitle'] .= ', ' . Piwik::translate('General_Value') . ': "' . $action['eventValue'] . '"';
+ }
if (strlen($action['pageTitle']) > 0) {
$action['eventName'] = $action['pageTitle'];
diff --git a/plugins/Events/lang/en.json b/plugins/Events/lang/en.json
index 52597feabd..9cc8e7f0bf 100644
--- a/plugins/Events/lang/en.json
+++ b/plugins/Events/lang/en.json
@@ -4,6 +4,7 @@
"AvgEventValue": "Average Event value is: %s",
"AvgValue": "Average value",
"AvgValueDocumentation": "The average of all values for this event",
+ "Category": "Category",
"Event": "Event",
"EventAction": "Event Action",
"EventActions": "Event Actions",