1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\ProfessionalServices;
use Piwik\Url;
class Promo
{
protected $linkTitles = array('Read more', 'Learn more');
protected $content = array();
public function __construct()
{
$this->content = array(
// A/B Testing
array(
'campaignContent' => 'abTesting',
'title' => 'A/B Testing',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/ab-testing-learn-more'),
'text' => 'Ever wondered what A/B testing is and why it is so important? Check out how you can increase conversions and sales on your website and app.',
),
array(
'campaignContent' => 'abTesting',
'title' => 'A/B Testing',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/ab-testing-website'),
'text' => 'Increase revenue and conversions by comparing different versions of your websites or apps, ad detect the winning variation that will grow your business!',
),
// Media Analytics
array(
'campaignContent' => 'mediaAnalytics',
'title' => 'Media Analytics',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/media-analytics-website'),
'text' => 'Ever wondered how people interact and engage with videos or audios on your website? Well now you can, and it integrates perfectly into your Matomo.',
),
array(
'campaignContent' => 'mediaAnalytics',
'title' => 'Media Analytics',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/media-analytics'),
'text' => 'Get powerful insights into how your audience watches your videos and listens to your audio. Media Analytics is now available on the Marketplace.',
),
// Form
array(
'campaignContent' => 'formAnalytics',
'title' => 'Form Analytics',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/form-analytics'),
'text' => 'Increase the conversions on your online forms, by learning everything about your users behavior and their pain points on your forms',
),
// Funnels
array(
'campaignContent' => 'funnels',
'title' => 'Funnels',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/conversion-funnels'),
'text' => 'Increase your conversions, sales and revenue by understanding your conversion funnels and where your visitors drop off with Funnels for Matomo.',
),
// Keywords performance
array(
'campaignContent' => 'searchKeywords',
'title' => 'Search Keywords',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/search-keywords-performance/'),
'text' => 'Which queries caused your website to appear in search results? Improve your SEO efforts and monitor your position and performance for each Keyword directly in your Matomo reports.',
),
// Roll-Up Reporting
array(
'campaignContent' => 'rollUp',
'title' => 'Roll-Up Reporting',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/roll-up-reporting/'),
'text' => 'Did you know you can aggregate the collected data across hundreds of sites and display it in a single dashboard?',
),
// White label
array(
'campaignContent' => 'whiteLabel',
'title' => 'White Label',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/white-label/'),
'text' => 'Did you know you can give your clients access to their analytics reports where all Matomo-branded widgets are removed? Try the White Label product!',
),
// Enterprise
array(
'campaignContent' => 'bringEnterpriseLevel',
'title' => 'Enterprise',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/enterprise/'),
'text' => 'Bring your analytics to enterprise level. Upgrade your Matomo platform and receive access to numerous premium features and assistance from experts.',
),
array(
'campaignContent' => 'slowingDown',
'title' => 'Enterprise',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/enterprise/'),
'text' => 'Is your Matomo slowing down? Matomo experts can help with your server setup!',
),
array(
'campaignContent' => 'discoverPower',
'title' => 'Enterprise',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/enterprise/'),
'text' => 'Discover the power of open-source combined with enterprise-grade support and premium functionalities.',
),
array(
'campaignContent' => 'heatmapsAndSessionRecordings',
'title' => 'Heatmaps and for Session Recordings',
'url' => Url::addCampaignParametersToMatomoLink('https://matomo.org/recommends/heatmap-session-recording-learn-more/'),
'text' => 'Truly understand your visitors by seeing where they click, hover, type and scroll. Replay their actions in a video and ultimately increase conversions.',
),
);
}
public function getLinkTitle()
{
$titles = $this->linkTitles;
shuffle($titles);
return array_shift($titles);
}
public function getContent()
{
$content = $this->content;
shuffle($content);
return array_shift($content);
}
}
|