You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// if we are in the marketplace install workflow, and the plugin has been
78
+
// activated, close the current window to go back to the marketplace setup
79
+
?>
80
+
<html>
81
+
<head></head>
82
+
<body>
83
+
<script>
84
+
window.close();
85
+
</script>
86
+
</body>
87
+
</html>
88
+
<?php
89
+
wp_die();
58
90
}
59
91
60
92
publicfunctionadmin_notices() {
@@ -64,12 +96,28 @@ public function admin_notices() {
64
96
?>
65
97
<div class="notice notice-info">
66
98
<p>
67
-
<?phpesc_html_e( 'You are almost there! Upload the .zip file below to install the Marketplace and start exploring advanced analytics features.', 'matomo' ); ?>
99
+
<?phpesc_html_e( 'You\'re almost there! Upload the .zip file below to install the Marketplace and start exploring advanced analytics features.', 'matomo' ); ?>
68
100
</p>
69
101
</div>
70
102
<?php
71
103
}
72
104
105
+
publicfunctionon_admin_footer() {
106
+
if ( ! $this->is_plugin_install_page() ) {
107
+
return;
108
+
}
109
+
110
+
// add script to add query param to plugin upload form submit URL
esc_html__( 'Don\'t want to use the plugin? Download directly %1$son our marketplace,%2$s but keep in mind, you won\'t receive automatic updates unless you use the Matomo Marketplace plugin.', 'matomo' ),
'desc' => __( "Measure the effectiveness of your marketing campaigns. Track up to five channels instead of two: campaign, source, medium, keyword, content.', 'matomo'", 'matomo' ),
'desc' => __( 'All keywords searched by your users on search engines are now visible into your Referrers reports! The ultimate solution to \'Keyword not defined\'.', 'matomo' ),
'desc' => __( 'Truly understand your visitors by seeing where they click, hover, type and scroll. Replay their actions in a video and ultimately increase conversions.', 'matomo' ),
325
333
'price' => '109EUR / 129USD',
326
334
],
327
-
'CustomAlerts' => [
328
-
'name'=> __( 'Custom Alerts', 'matomo' ),
329
-
'desc'=> __( 'Create custom Alerts to be notified of important changes on your website or app!', 'matomo' ),
335
+
'CustomAlerts'=> [
336
+
'name' => __( 'Custom Alerts', 'matomo' ),
337
+
'desc' => __( 'Create custom Alerts to be notified of important changes on your website or app!', 'matomo' ),
330
338
],
331
-
'MediaAnalytics' => [
339
+
'MediaAnalytics'=> [
332
340
'name' => __( 'Media Analytics', 'matomo' ),
333
341
'desc' => __( 'Grow your business with advanced video & audio analytics. Get powerful insights into how your audience watches your videos and listens to your audio.', 'matomo' ),
334
342
'price' => '89EUR / 99USD',
335
343
],
336
-
'CustomReports' => [
344
+
'CustomReports'=> [
337
345
'name' => __( 'Custom Reports', 'matomo' ),
338
346
'desc' => __( 'Pull out the information you need in order to be successful. Develop your custom strategy to meet your individualized goals while saving money & time.', 'matomo' ),
'desc' => __( 'All premium features in one bundle, make the most out of your Matomo for WordPress and enjoy discounts of up to 25%!', 'matomo' ),
344
352
'price' => '549EUR / 639USD',
345
353
],
346
-
'UsersFlow' => [
354
+
'UsersFlow'=> [
347
355
'name' => __( 'Users Flow', 'matomo' ),
348
356
'desc' => __( 'Users Flow is a visual representation of the most popular paths your users take through your website & app which lets you understand your users needs.', 'matomo' ),
0 commit comments