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:
authormattab <matthieu.aubry@gmail.com>2017-03-25 03:02:58 +0300
committermattab <matthieu.aubry@gmail.com>2017-03-25 03:02:58 +0300
commit4cfa59637a3209958e2406fb81a616f0141c1d6e (patch)
tree0dfa4cbe6450f30369dd49f18793d789bbf5c470 /plugins/ProfessionalServices
parent54e12185b67e18a13a443171561b857a1b05d954 (diff)
refactor into twig files
Diffstat (limited to 'plugins/ProfessionalServices')
-rw-r--r--plugins/ProfessionalServices/ProfessionalServices.php37
-rw-r--r--plugins/ProfessionalServices/templates/promoBelowEvents.twig7
-rw-r--r--plugins/ProfessionalServices/templates/promoExperiments.twig3
-rw-r--r--plugins/ProfessionalServices/templates/promoFunnel.twig5
-rw-r--r--plugins/ProfessionalServices/templates/promoSearchKeywords.twig6
5 files changed, 31 insertions, 27 deletions
diff --git a/plugins/ProfessionalServices/ProfessionalServices.php b/plugins/ProfessionalServices/ProfessionalServices.php
index 76a2350b54..5dd848e61d 100644
--- a/plugins/ProfessionalServices/ProfessionalServices.php
+++ b/plugins/ProfessionalServices/ProfessionalServices.php
@@ -9,6 +9,7 @@
namespace Piwik\Plugins\ProfessionalServices;
use Piwik\Common;
+use Piwik\View;
class ProfessionalServices extends \Piwik\Plugin
{
@@ -66,13 +67,8 @@ class ProfessionalServices extends \Piwik\Plugin
return;
}
- $out .= '
- <p style="margin-top:3em;margin-bottom:3em" class=" alert-info alert">Did you know?<br/>
- Use <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/search-keywords-performance/">Search Keywords Performance</a>
- to see all keywords behind \'keyword not defined\'.
- All keywords searched by your users on Google, Bing and other search engines will be listed
- and you can even monitor the SEO position of your website in their search results.
- </p>';
+ $view = new View('@ProfessionalServices/promoSearchKeywords');
+ $out .= $view->render();
}
public function getGoalFunnelOverviewPromo(&$out)
@@ -82,12 +78,8 @@ class ProfessionalServices extends \Piwik\Plugin
return;
}
- $out .= '
- <p style="margin-top:3em;margin-bottom:3em" class=" alert-info alert">Did you know?
- A Funnel defines a series of actions that you expect your visitors to take on their way to converting a goal.
- <br/>With <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/conversion-funnel/">Funnels for Piwik</a>,
- you can easily determine your funnel and see where your visitors drop off and how to focus efforts to increase your conversions.
- </p>';
+ $view = new View('@ProfessionalServices/promoFunnel');
+ $out .= $view->render();
}
@@ -98,11 +90,8 @@ class ProfessionalServices extends \Piwik\Plugin
return;
}
- $out .= '
- <p style="margin-top:3em" class=" alert-info alert">Did you know?
- With <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/ab-testing-learn-more/">A/B Testing for Piwik</a> you can immediately increase conversions and sales by creating different versions of a page to see which one grows your business.
- </p>
- ';
+ $view = new View('@ProfessionalServices/promoExperiments.twig');
+ $out .= $view->render();
}
public function getEventsPromo(&$out)
@@ -110,14 +99,8 @@ class ProfessionalServices extends \Piwik\Plugin
if($this->isRequestForDashboardWidget()) {
return;
}
- $inlineAd = '';
- if(!\Piwik\Plugin\Manager::getInstance()->isPluginActivated('MediaAnalytics')) {
- $inlineAd = '<br/>When you publish videos or audios, <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/media-analytics-website">Media Analytics gives deep insights into your audience</a> and how they watch your videos or listens to your music.';
- }
- $out .= '<p style="margin-top:3em" class=" alert-info alert">Did you know?
- <br/>Using Events you can measure any user interaction and gain amazing insights into your audience. <a target="_blank" href="?module=Proxy&action=redirect&url=http://piwik.org/docs/event-tracking/">Learn more</a>.
- <br/> To measure blocks of content such as image galleries, listings or ads: use <a target="_blank" href="?module=Proxy&action=redirect&url=http://developer.piwik.org/guides/content-tracking">Content Tracking</a> and see exactly which content is viewed and clicked.
- ' . $inlineAd . '
- </p>';
+ $view = new View('@ProfessionalServices/promoBelowEvents');
+ $view->displayMediaAnalyticsAd = !\Piwik\Plugin\Manager::getInstance()->isPluginActivated('MediaAnalytics');
+ $out .= $view->render();
}
}
diff --git a/plugins/ProfessionalServices/templates/promoBelowEvents.twig b/plugins/ProfessionalServices/templates/promoBelowEvents.twig
new file mode 100644
index 0000000000..8121d9c1cb
--- /dev/null
+++ b/plugins/ProfessionalServices/templates/promoBelowEvents.twig
@@ -0,0 +1,7 @@
+<p style="margin-top:3em" class=" alert-info alert">Did you know?
+ <br/>Using Events you can measure any user interaction and gain amazing insights into your audience. <a target="_blank" href="?module=Proxy&action=redirect&url=http://piwik.org/docs/event-tracking/">Learn more</a>.
+ <br/> To measure blocks of content such as image galleries, listings or ads: use <a target="_blank" href="?module=Proxy&action=redirect&url=http://developer.piwik.org/guides/content-tracking">Content Tracking</a> and see exactly which content is viewed and clicked.
+ {% if displayMediaAnalyticsAd %}
+ <br/>When you publish videos or audios, <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/media-analytics-website">Media Analytics gives deep insights into your audience</a> and how they watch your videos or listens to your music.
+ {% endif %}
+</p> \ No newline at end of file
diff --git a/plugins/ProfessionalServices/templates/promoExperiments.twig b/plugins/ProfessionalServices/templates/promoExperiments.twig
new file mode 100644
index 0000000000..cfef975e0c
--- /dev/null
+++ b/plugins/ProfessionalServices/templates/promoExperiments.twig
@@ -0,0 +1,3 @@
+<p style="margin-top:3em" class=" alert-info alert">Did you know?
+ With <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/ab-testing-learn-more/">A/B Testing for Piwik</a> you can immediately increase conversions and sales by creating different versions of a page to see which one grows your business.
+</p> \ No newline at end of file
diff --git a/plugins/ProfessionalServices/templates/promoFunnel.twig b/plugins/ProfessionalServices/templates/promoFunnel.twig
new file mode 100644
index 0000000000..4e1118a0ef
--- /dev/null
+++ b/plugins/ProfessionalServices/templates/promoFunnel.twig
@@ -0,0 +1,5 @@
+<p style="margin-top:3em;margin-bottom:3em" class="alert-info alert">Did you know?
+ A Funnel defines a series of actions that you expect your visitors to take on their way to converting a goal.
+ <br/>With <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/conversion-funnel/">Funnels for Piwik</a>,
+ you can easily determine your funnel and see where your visitors drop off and how to focus efforts to increase your conversions.
+</p> \ No newline at end of file
diff --git a/plugins/ProfessionalServices/templates/promoSearchKeywords.twig b/plugins/ProfessionalServices/templates/promoSearchKeywords.twig
new file mode 100644
index 0000000000..aaa283b68f
--- /dev/null
+++ b/plugins/ProfessionalServices/templates/promoSearchKeywords.twig
@@ -0,0 +1,6 @@
+<p style="margin-top:3em;margin-bottom:3em" class=" alert-info alert">Did you know?<br/>
+ Use <a target="_blank" rel="noreferrer" href="https://piwik.org/recommends/search-keywords-performance/">Search Keywords Performance</a>
+ to see all keywords behind 'keyword not defined'.
+ All keywords searched by your users on Google, Bing and other search engines will be listed
+ and you can even monitor the SEO position of your website in their search results.
+</p> \ No newline at end of file