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:
Diffstat (limited to 'plugins/ProfessionalServices/ProfessionalServices.php')
-rw-r--r--plugins/ProfessionalServices/ProfessionalServices.php40
1 files changed, 20 insertions, 20 deletions
diff --git a/plugins/ProfessionalServices/ProfessionalServices.php b/plugins/ProfessionalServices/ProfessionalServices.php
index 8dafa079bd..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
{
@@ -24,6 +25,7 @@ class ProfessionalServices extends \Piwik\Plugin
'Template.afterGoalCannotAddNewGoal' => array('function' => 'getGoalOverviewPromo', 'after' => true),
'Template.endGoalEditTable' => array('function' => 'getGoalFunnelOverviewPromo', 'after' => true),
'Template.afterEventsReport' => 'getEventsPromo',
+ 'Template.afterReferrersKeywordsReport' => 'getSearchKeywordsPerformancePromo',
);
}
@@ -58,6 +60,17 @@ class ProfessionalServices extends \Piwik\Plugin
return $isWidget;
}
+ public function getSearchKeywordsPerformancePromo(&$out)
+ {
+ if(\Piwik\Plugin\Manager::getInstance()->isPluginActivated('SearchEngineKeywordsPerformance')
+ || $this->isRequestForDashboardWidget()) {
+ return;
+ }
+
+ $view = new View('@ProfessionalServices/promoSearchKeywords');
+ $out .= $view->render();
+ }
+
public function getGoalFunnelOverviewPromo(&$out)
{
if(\Piwik\Plugin\Manager::getInstance()->isPluginActivated('Funnels')
@@ -65,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();
}
@@ -81,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)
@@ -93,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();
}
}