├── API.php ├── Archiver.php ├── CHANGELOG.md ├── Campaign ├── CampaignDetector.php └── CampaignDetectorInterface.php ├── Columns ├── Base.php ├── CampaignContent.php ├── CampaignGroup.php ├── CampaignId.php ├── CampaignKeyword.php ├── CampaignMedium.php ├── CampaignName.php ├── CampaignPlacement.php ├── CampaignSource.php ├── CampaignSourceMedium.php └── CombinedKeywordContent.php ├── LICENSE ├── MarketingCampaignsReporting.php ├── README.md ├── RecordBuilders └── CampaignReporting.php ├── Reports ├── Base.php ├── GetContent.php ├── GetGroup.php ├── GetId.php ├── GetKeyword.php ├── GetKeywordContentFromNameId.php ├── GetMedium.php ├── GetName.php ├── GetNameFromSourceMediumId.php ├── GetPlacement.php ├── GetSource.php └── GetSourceMedium.php ├── SystemSettings.php ├── Tracker └── RequestProcessor.php ├── Updates └── 5.1.0.php ├── VisitorDetails.php ├── config └── config.php ├── docs └── index.md ├── lang ├── am.json ├── ar.json ├── az.json ├── be.json ├── bg.json ├── bn.json ├── bs.json ├── ca.json ├── cs.json ├── cy.json ├── da.json ├── de.json ├── dv.json ├── el.json ├── en.json ├── eo.json ├── es-ar.json ├── es.json ├── et.json ├── eu.json ├── fa.json ├── fi.json ├── fr.json ├── ga.json ├── gl.json ├── gu.json ├── he.json ├── hi.json ├── hr.json ├── hu.json ├── hy.json ├── id.json ├── is.json ├── it.json ├── ja.json ├── ka.json ├── ko.json ├── ku.json ├── lb.json ├── lt.json ├── lv.json ├── ms.json ├── nb.json ├── nl.json ├── nn.json ├── pl.json ├── pt-br.json ├── pt.json ├── ro.json ├── ru.json ├── si.json ├── sk.json ├── sl.json ├── sq.json ├── sr.json ├── sv.json ├── ta.json ├── te.json ├── th.json ├── tl.json ├── tr.json ├── tzm.json ├── uk.json ├── ur.json ├── vi.json ├── zh-cn.json └── zh-tw.json ├── phpcs.xml ├── plugin.json ├── pull_request_template.md ├── screenshots ├── Goal conversion optimisation and marketing campaign conversion rates.png ├── Marketing-Campaign-Analytics-report.png └── Segmenting on Marketing Campaign attributes such as Campaign Medium.png ├── stylesheets └── styles.less └── templates └── visitorDetails.twig /API.php: -------------------------------------------------------------------------------- 1 | filter('Sort', array(Metrics::INDEX_NB_VISITS)); 34 | return $dataTable; 35 | } 36 | 37 | public function getId($idSite, $period, $date, $segment = false) 38 | { 39 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_ID_RECORD_NAME, $idSite, $period, $date, $segment); 40 | $dataTable->filter('AddSegmentValue'); 41 | return $dataTable; 42 | } 43 | 44 | public function getName($idSite, $period, $date, $segment = false, $expanded = false, $flat = false) 45 | { 46 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_NAME_RECORD_NAME, $idSite, $period, $date, $segment, $expanded, $flat); 47 | $dataTable->filter('AddSegmentValue'); 48 | 49 | if ($this->isTableEmpty($dataTable)) { 50 | $referrersDataTable = ReferrersAPI::getInstance()->getCampaigns($idSite, $period, $date, $segment, $expanded); 51 | $dataTable = $this->mergeDataTableMaps($dataTable, $referrersDataTable); 52 | } 53 | 54 | return $dataTable; 55 | } 56 | 57 | public function getKeywordContentFromNameId($idSite, $period, $date, $idSubtable, $segment = false) 58 | { 59 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_NAME_RECORD_NAME, $idSite, $period, $date, $segment, $expanded = false, $flat = false, $idSubtable); 60 | 61 | if (!$this->isTableEmpty($dataTable)) { 62 | return $dataTable; 63 | } 64 | 65 | // try to load sub table from referrers api. That might work, if the report leading to this subtable was loaded using the referrers api fallback 66 | $referrersDataTable = ReferrersAPI::getInstance()->getKeywordsFromCampaignId($idSite, $period, $date, $idSubtable, $segment); 67 | 68 | if (!$this->isTableEmpty($referrersDataTable)) { 69 | return $this->mergeDataTableMaps($dataTable, $referrersDataTable); 70 | } 71 | 72 | // if we can't find a subtable report using the id, try fetching the label to search for a subtable 73 | $campaignNames = $this->getDataTable(Archiver::CAMPAIGN_NAME_RECORD_NAME, $idSite, $period, $date, $segment, $expanded = false); 74 | $row = $campaignNames->getRowFromIdSubDataTable($idSubtable); 75 | 76 | if (!$row) { 77 | return $dataTable; 78 | } 79 | 80 | $campaignName = $row->getColumn('label'); 81 | 82 | $campaignsDataTable = ReferrersAPI::getInstance()->getCampaigns($idSite, $period, $date, $segment, false); 83 | $campaignRow = $campaignsDataTable->getRowFromLabel($campaignName); 84 | 85 | if ($campaignRow && $idSubtable = $campaignRow->getIdSubDataTable()) { 86 | $referrersDataTable = ReferrersAPI::getInstance()->getKeywordsFromCampaignId($idSite, $period, $date, $idSubtable, $segment); 87 | return $this->mergeDataTableMaps($dataTable, $referrersDataTable); 88 | } 89 | 90 | return $dataTable; 91 | } 92 | 93 | public function getKeyword($idSite, $period, $date, $segment = false) 94 | { 95 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_KEYWORD_RECORD_NAME, $idSite, $period, $date, $segment); 96 | $dataTable->filter('AddSegmentValue'); 97 | 98 | if ($this->isTableEmpty($dataTable)) { 99 | $referrersDataTable = ReferrersAPI::getInstance()->getCampaigns($idSite, $period, $date, $segment, $expanded = true); 100 | $referrersDataTable->applyQueuedFilters(); 101 | $referrersDataTable = $referrersDataTable->mergeSubtables(); 102 | 103 | $dataTable = $this->mergeDataTableMaps($dataTable, $referrersDataTable); 104 | } 105 | 106 | return $dataTable; 107 | } 108 | 109 | public function getSource($idSite, $period, $date, $segment = false) 110 | { 111 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_SOURCE_RECORD_NAME, $idSite, $period, $date, $segment); 112 | $dataTable->filter('AddSegmentValue'); 113 | return $dataTable; 114 | } 115 | 116 | public function getMedium($idSite, $period, $date, $segment = false) 117 | { 118 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_MEDIUM_RECORD_NAME, $idSite, $period, $date, $segment); 119 | $dataTable->filter('AddSegmentValue'); 120 | return $dataTable; 121 | } 122 | 123 | public function getContent($idSite, $period, $date, $segment = false) 124 | { 125 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_CONTENT_RECORD_NAME, $idSite, $period, $date, $segment); 126 | $dataTable->filter('AddSegmentValue'); 127 | return $dataTable; 128 | } 129 | 130 | public function getGroup($idSite, $period, $date, $segment = false) 131 | { 132 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_GROUP_RECORD_NAME, $idSite, $period, $date, $segment); 133 | $dataTable->filter('AddSegmentValue'); 134 | return $dataTable; 135 | } 136 | 137 | public function getPlacement($idSite, $period, $date, $segment = false) 138 | { 139 | $dataTable = $this->getDataTable(Archiver::CAMPAIGN_PLACEMENT_RECORD_NAME, $idSite, $period, $date, $segment); 140 | $dataTable->filter('AddSegmentValue'); 141 | return $dataTable; 142 | } 143 | 144 | public function getSourceMedium($idSite, $period, $date, $segment = false, $expanded = false, $flat = false) 145 | { 146 | $dataTable = $this->getDataTable(Archiver::HIERARCHICAL_SOURCE_MEDIUM_RECORD_NAME, $idSite, $period, $date, $segment, $expanded, $flat); 147 | return $dataTable; 148 | } 149 | 150 | public function getNameFromSourceMediumId($idSite, $period, $date, $idSubtable, $segment = false) 151 | { 152 | $dataTable = $this->getDataTable(Archiver::HIERARCHICAL_SOURCE_MEDIUM_RECORD_NAME, $idSite, $period, $date, $segment, $expanded = false, $flat = false, $idSubtable); 153 | return $dataTable; 154 | } 155 | 156 | private function isTableEmpty(DataTable\DataTableInterface $dataTable) 157 | { 158 | if ($dataTable instanceof DataTable) { 159 | return $dataTable->getRowsCount() == 0; 160 | } elseif ($dataTable instanceof DataTable\Map) { 161 | foreach ($dataTable->getDataTables() as $label => $childTable) { 162 | if ($this->isTableEmpty($childTable)) { 163 | return true; 164 | } 165 | } 166 | return false; 167 | } else { 168 | throw new \Exception("Sanity check: unknown datatable type '" . get_class($dataTable) . "'."); 169 | } 170 | } 171 | 172 | private function mergeDataTableMaps( 173 | DataTable\DataTableInterface $dataTable, 174 | DataTable\DataTableInterface $referrersDataTable 175 | ) { 176 | if ($dataTable instanceof DataTable) { 177 | if ($this->isTableEmpty($dataTable)) { 178 | $referrersDataTable->setAllTableMetadata($dataTable->getAllTableMetadata()); 179 | return $referrersDataTable; 180 | } else { 181 | return $dataTable; 182 | } 183 | } elseif ($dataTable instanceof DataTable\Map) { 184 | foreach ($dataTable->getDataTables() as $label => $childTable) { 185 | $newTable = $this->mergeDataTableMaps($childTable, $referrersDataTable->getTable($label)); 186 | $dataTable->addTable($newTable, $label); 187 | } 188 | return $dataTable; 189 | } else { 190 | throw new \Exception("Sanity check: unknown datatable type '" . get_class($dataTable) . "'."); 191 | } 192 | } 193 | } 194 | -------------------------------------------------------------------------------- /Archiver.php: -------------------------------------------------------------------------------- 1 | getParam('url'); 29 | $landingUrl = PageUrl::cleanupUrl($landingUrl); 30 | $landingUrlParsed = parse_url($landingUrl); 31 | 32 | if ( 33 | !isset($landingUrlParsed['query']) 34 | && !isset($landingUrlParsed['fragment']) 35 | ) { 36 | return false; 37 | } 38 | 39 | $campaignDimensions = []; 40 | 41 | // 1) Detect from fragment #hash 42 | if (isset($landingUrlParsed['fragment'])) { 43 | $queryString = $this->extractQueryString($landingUrlParsed['fragment']); 44 | $campaignDimensions = $this->detectCampaignFromString( 45 | $queryString, 46 | $campaignParameters 47 | ); 48 | } 49 | 50 | // 2) Detect campaign from query string 51 | if (empty($campaignDimensions) && isset($landingUrlParsed['query'])) { 52 | $campaignDimensions = $this->detectCampaignFromString( 53 | $landingUrlParsed['query'], 54 | $campaignParameters 55 | ); 56 | } 57 | return $campaignDimensions; 58 | } 59 | 60 | /** 61 | * @param $queryString 62 | * @return boolean|array 63 | */ 64 | public function detectCampaignFromString($queryString, $campaignParameters) 65 | { 66 | $campaignDimensions = []; 67 | foreach ($campaignParameters as $sqlField => $requestParams) { 68 | foreach ($requestParams as $campaignDimensionParam) { 69 | $value = $this->getValueFromQueryString($campaignDimensionParam, $queryString); 70 | if (!empty($value)) { 71 | $campaignDimensions[$sqlField] = $value; 72 | break 1; 73 | } 74 | } 75 | } 76 | return $campaignDimensions; 77 | } 78 | 79 | /** 80 | * @param $param 81 | * @param $queryString 82 | * @return bool|null|string 83 | */ 84 | protected function getValueFromQueryString($param, $queryString) 85 | { 86 | $valueFromRequest = UrlHelper::getParameterFromQueryString($queryString, $param) ?? ''; 87 | $valueFromRequest = trim(urldecode($valueFromRequest)); 88 | $valueFromRequest = substr($valueFromRequest, 0, 250); 89 | if (!empty($valueFromRequest)) { 90 | return $valueFromRequest; 91 | } 92 | return false; 93 | } 94 | 95 | /** 96 | * @param $visitorInfo 97 | * @param $campaignParameters 98 | * @return array|bool 99 | */ 100 | public function detectCampaignFromVisit($visitorInfo, $campaignParameters) 101 | { 102 | $campaignFields = MarketingCampaignsReporting::getAdvancedCampaignFields(); 103 | 104 | $campaignDimensions = array_intersect_key($visitorInfo, array_flip($campaignFields)); 105 | 106 | foreach ($campaignDimensions as $key => $value) { 107 | if (is_null($value) || $value == '') { 108 | unset($campaignDimensions[$key]); 109 | } 110 | } 111 | return $campaignDimensions; 112 | } 113 | 114 | protected function extractQueryString($fragment) 115 | { 116 | if (strpos($fragment, '/') === 0) { 117 | $parsed = parse_url($fragment); 118 | if (isset($parsed['query'])) { 119 | $fragment = $parsed['query']; 120 | } 121 | } 122 | 123 | return $fragment; 124 | } 125 | } 126 | -------------------------------------------------------------------------------- /Campaign/CampaignDetectorInterface.php: -------------------------------------------------------------------------------- 1 | visitProperties->getProperties(); 46 | 47 | $campaignDimensions = $campaignDetector->detectCampaignFromRequest( 48 | $request, 49 | $campaignParameters 50 | ); 51 | 52 | if (empty($campaignDimensions)) { 53 | // If for some reason a campaign was detected in Core Tracker 54 | // but not here, copy that campaign to the Advanced Campaign 55 | if ($visitProperties['referer_type'] == Common::REFERRER_TYPE_CAMPAIGN) { 56 | $campaignDimensions = array( 57 | (new CampaignName())->getColumnName() => $visitProperties['referer_name'] 58 | ); 59 | if (!empty($visitProperties['referer_keyword'])) { 60 | $campaignDimensions[(new CampaignKeyword())->getColumnName()] = $visitProperties['referer_keyword']; 61 | } 62 | } 63 | } 64 | 65 | if (!empty($campaignDimensions) && array_key_exists($this->getColumnName(), $campaignDimensions)) { 66 | return substr($campaignDimensions[$this->getColumnName()], 0, $this->getColumnName() == 'campaign_id' ? 100 : 255); 67 | } 68 | 69 | return null; 70 | } 71 | 72 | /** 73 | * @param Request $request 74 | * @param Visitor $visitor 75 | * @param Action|null $action 76 | * @return mixed 77 | */ 78 | public function onAnyGoalConversion(Request $request, Visitor $visitor, $action) 79 | { 80 | $campaignDetector = StaticContainer::get('advanced_campaign_reporting.campaign_detector'); 81 | $campaignParameters = MarketingCampaignsReporting::getCampaignParameters(); 82 | 83 | $visitProperties = $visitor->visitProperties->getProperties(); 84 | 85 | $campaignDimensions = $campaignDetector->detectCampaignFromVisit( 86 | $visitProperties, 87 | $campaignParameters 88 | ); 89 | 90 | if (empty($campaignDimensions)) { 91 | $campaignDimensions = $campaignDetector->detectCampaignFromRequest( 92 | $request, 93 | $campaignParameters 94 | ); 95 | } 96 | 97 | if (!empty($campaignDimensions) && array_key_exists($this->getColumnName(), $campaignDimensions)) { 98 | return substr($campaignDimensions[$this->getColumnName()], 0, $this->getColumnName() == 'campaign_id' ? 100 : 255); 99 | } 100 | 101 | return null; 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /Columns/CampaignContent.php: -------------------------------------------------------------------------------- 1 | getIdSiteIfExists()) != 1) { 42 | return false; 43 | } 44 | 45 | /** @var CampaignDetector|CampaignDetectorInterface $campaignDetector */ 46 | $campaignDetector = StaticContainer::get('advanced_campaign_reporting.campaign_detector'); 47 | $campaignParameters = MarketingCampaignsReporting::getCampaignParameters(); 48 | 49 | $campaignDimensions = $campaignDetector->detectCampaignFromRequest( 50 | $request, 51 | $campaignParameters 52 | ); 53 | 54 | // we force a new visit if the referrer is a campaign and it's different than the currently recorded referrer. 55 | // if the current referrer is 'direct entry', however, we assume the referrer information was sent in a later request, and 56 | // we just update the existing referrer information instead of creating a visit. 57 | if ( 58 | !empty($campaignDimensions) 59 | && $this->isCampaignInformationNew($visitor, $campaignDimensions) 60 | ) { 61 | Common::printDebug("Existing visit detected, but creating new visit because campaign information is different than last action."); 62 | 63 | return true; 64 | } 65 | 66 | return false; 67 | } 68 | 69 | protected function isCampaignInformationNew(Visitor $visitor, $campaignDimensions) 70 | { 71 | foreach (MarketingCampaignsReporting::getAdvancedCampaignFields() as $infoName) { 72 | if ($this->hasReferrerColumnChanged($visitor, $campaignDimensions, $infoName)) { 73 | return true; 74 | } 75 | } 76 | return false; 77 | } 78 | 79 | protected function hasReferrerColumnChanged(Visitor $visitor, $information, $infoName) 80 | { 81 | $existing = Common::mb_strtolower($visitor->getVisitorColumn($infoName) ?? ''); 82 | $new = isset($information[$infoName]) ? Common::mb_strtolower($information[$infoName]) : false; 83 | 84 | $result = $existing != $new; 85 | if ($result) { 86 | Common::printDebug("Referrers\Base::isReferrerInformationNew: detected change in $infoName ('$existing' != '$new')."); 87 | } 88 | 89 | return $result; 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /Columns/CampaignPlacement.php: -------------------------------------------------------------------------------- 1 | 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /MarketingCampaignsReporting.php: -------------------------------------------------------------------------------- 1 | 'getQueryParametersToExclude', 40 | 'Report.filterReports' => 'removeOriginalCampaignReport', 41 | 'Insights.addReportToOverview' => 'addReportToInsightsOverview', 42 | 'AssetManager.getStylesheetFiles' => 'getStylesheetFiles', 43 | 'Plugin.shouldLowerCampaignCase' => 'shouldLowerCampaignCase', 44 | ); 45 | } 46 | 47 | public function getStylesheetFiles(&$stylesheets) 48 | { 49 | $stylesheets[] = "plugins/MarketingCampaignsReporting/stylesheets/styles.less"; 50 | } 51 | 52 | public function install() 53 | { 54 | $tables = \Piwik\DbHelper::getTablesInstalled(); 55 | foreach ($tables as $tableName) { 56 | if (strpos($tableName, 'archive_blob_') !== false || strpos($tableName, 'archive_numeric_') !== false) { 57 | Db::exec('UPDATE `' . $tableName . '` SET `name`=REPLACE(`name`, \'AdvancedCampaignReporting_\', \'MarketingCampaignsReporting_\') WHERE `name` LIKE \'AdvancedCampaignReporting_%\''); 58 | } 59 | } 60 | 61 | Plugin\Manager::getInstance()->deactivatePlugin('AdvancedCampaignReporting'); 62 | } 63 | 64 | public function getQueryParametersToExclude(&$excludedParameters) 65 | { 66 | $advancedCampaignParameters = self::getCampaignParameters(); 67 | 68 | foreach ($advancedCampaignParameters as $advancedCampaignParameter) { 69 | $excludedParameters = array_merge($excludedParameters, $advancedCampaignParameter); 70 | } 71 | } 72 | 73 | public function addReportToInsightsOverview(&$reports) 74 | { 75 | unset($reports['Referrers_getCampaigns']); 76 | $reports['MarketingCampaignsReporting_getName'] = []; 77 | } 78 | 79 | /** 80 | * @return array 81 | */ 82 | public static function getCampaignParameters() 83 | { 84 | return array_merge( 85 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_name'), 86 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_keyword'), 87 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_source'), 88 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_medium'), 89 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_content'), 90 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_id'), 91 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_group'), 92 | StaticContainer::get('advanced_campaign_reporting.uri_parameters.campaign_placement') 93 | ); 94 | } 95 | 96 | /** 97 | * @param Report[] $reports 98 | */ 99 | public function removeOriginalCampaignReport(&$reports) 100 | { 101 | foreach ($reports as $index => $report) { 102 | if ($report instanceof GetCampaigns) { 103 | unset($reports[$index]); 104 | } 105 | } 106 | } 107 | 108 | public static function getAdvancedCampaignFields() 109 | { 110 | $dimensions = Base::getDimensions(new self()); 111 | $campaignFields = []; 112 | 113 | foreach ($dimensions as $dimension) { 114 | $campaignFields[] = $dimension->getColumnName(); 115 | } 116 | 117 | return $campaignFields; 118 | } 119 | 120 | public function isTrackerPlugin() 121 | { 122 | return true; 123 | } 124 | 125 | public function shouldLowerCampaignCase($pluginName, &$shouldLowerCampaignCase) 126 | { 127 | $systemSettings = StaticContainer::get(SystemSettings::class); 128 | $shouldLowerCampaignCase = !$systemSettings->doNotChangeCaseOfUtmParameters->getValue(); 129 | } 130 | } 131 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Marketing Campaigns Reporting 2 | 3 | [![Build Status](https://github.com/matomo-org/plugin-MarketingCampaignsReporting/actions/workflows/matomo-tests.yml/badge.svg?branch=4.x-dev)](https://github.com/matomo-org/plugin-MarketingCampaignsReporting/actions/workflows/matomo-tests.yml) 4 | 5 | ## Description 6 | 7 | Measure the effectiveness of your marketing campaigns. 8 | Measure up to five of your marketing campaigns channels: name, source, medium, keyword, content. 9 | Access all your campaign analytics reports into a unified interface and track the effectiveness of all your channels. 10 | Supports any kind of campaign and channel: Adwords, Facebook, Twitter, Youtube, Display advertising, Custom Marketing campaigns, Email newsletters. 11 | 12 | ### The Marketing URL Builder 13 | 14 | [Generate your trackable marketing URLs with our URL Builder tool.](https://matomo.org/docs/tracking-campaigns-url-builder/) 15 | 16 | ### Tracking campaigns 17 | 18 | To track a campaign, you add special URL parameters to your URLs. 19 | 20 | The URL parameters are: 21 | 22 | * `mtm_campaign` (campaign name such as mailing_2017_03 or Easter_Sale), 23 | * `mtm_source` (campaign source such as google or facebook), 24 | * `mtm_medium` (campaign medium such as email or cpc), 25 | * `mtm_keyword` (campaign keyword), 26 | * `mtm_content` (campaign content), 27 | * `mtm_cid` (campaign ID code). 28 | * `mtm_group` (campaign group). 29 | * `mtm_placement` (campaign placement). 30 | 31 | If you already have URLs tagged with Google Analytics parameters these are also supported: 32 | 33 | * `utm_campaign`, 34 | * `utm_source`, 35 | * `utm_medium`, 36 | * `utm_term`, 37 | * `utm_content`, 38 | * `utm_id`. 39 | 40 | For example if your Ad URL or landing page URL is `example.com/offer`, you would track all clicks on this URL by 41 | adding one or more of the parameters above: 42 | ``` 43 | example.com/offer?mtm_campaign=Best-Seller&mtm_source=Newsletter_7&mtm_medium=email 44 | ``` 45 | 46 | ### Features 47 | * Real time Analytics Reports of all your Campaign Marketing. 48 | * Detects Campaign parameters from the landing page URL, within the query string or in the #hash string. 49 | * The Referrers>Overview report displays a left column "Referrers Overview" with a list of reports that can be loaded on click. 50 | This report viewer now also lists the new Campaign reports under "View Referrers by Campaign". 51 | * The content of Referrers> Campaign will be replaced with the new enhanced Campaigns reports. 52 | * The default Referrers Campaign widget and API are working as before. 53 | * The campaign reports are available in Matomo Mobile and can be sent as Scheduled reports (by email, as HTML or PDF). 54 | * Segment editor: a new "Campaigns" category lists the five new segment for each campaign dimension (campaign name, campaign keyword, campaign source, campaign medium, campaign content). 55 | * Add Marketing campaign reports to your personalized Dashboard. 56 | * Access the Campaign Report data with the Marketing Campaigns Reporting API. 57 | * Will track up to 250 characters for each of the five Campaign dimension. 58 | * Get automatic [email and sms reports](https://matomo.org/docs/email-reports/) for your campaigns, or send them to your colleagues or customers. 59 | 60 | ### Reports for more than 1,000 campaigns 61 | 62 | In the Campaign reports by default Matomo will only archive the first 1000 rows (your 1000 most popular campaigns). 63 | To report on all your campaigns you can configure Matomo so it does not truncate your data. 64 | For example to keep the top 10,000 campaigns edit your `config/config.ini.php` and add the following: 65 | 66 | ``` 67 | [General] 68 | datatable_archiving_maximum_rows_referrers = 10000 69 | datatable_archiving_maximum_rows_subtable_referrers = 10000 70 | ``` 71 | 72 | ### Customising your campaign parameters 73 | 74 | It is possible to configure custom names for campaign parameters. In order to do so you have add config to config.ini.php file. 75 | If you configure any campaign parameter this configuration will overwrite default config for this parameter. 76 | 77 | ``` 78 | [MarketingCampaignsReporting] 79 | campaign_name = "matomo_campaign,mtm_cpn,utm_campaign" 80 | campaign_keyword = "mtm_keyword,matomo_kwd,mtm_kwd,utm_term" 81 | campaign_source = "mtm_source,utm_source" 82 | campaign_medium = "mtm_medium,utm_medium" 83 | campaign_content = "mtm_content,utm_content" 84 | campaign_id = "mtm_cid,utm_id,mtm_clid" 85 | campaign_group = "mtm_group" 86 | campaign_placement = "mtm_placement" 87 | ``` 88 | 89 | For example, by default parameter `campaign_name` track following parameters if they are found in URL: `'mtm_campaign', 'matomo_campaign', 'mtm_cpn', 'utm_campaign'`. If you configure `campaign_name` like this `campaign_name="mtm_campaign,custom_name_parameter"`, then parameter `campaign_name` will detect only presence of `mtm_campaign` and `custom_name_parameter` in URL. `matomo_campaign`, `mtm_cpn`, `utm_campaign` will be ignored until they are present in config. 90 | All parameter are case-insensitiv except optional mtm_clid. 91 | 92 | -------------------------------------------------------------------------------- /RecordBuilders/CampaignReporting.php: -------------------------------------------------------------------------------- 1 | columnToSortByBeforeTruncation = Metrics::INDEX_NB_VISITS; 34 | $this->maxRowsInTable = Config::getInstance()->General['datatable_archiving_maximum_rows_referrers']; 35 | $this->maxRowsInSubtable = Config::getInstance()->General['datatable_archiving_maximum_rows_subtable_referrers']; 36 | } 37 | 38 | public function getRecordMetadata(ArchiveProcessor $archiveProcessor): array 39 | { 40 | return [ 41 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_CONTENT_RECORD_NAME), 42 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_GROUP_RECORD_NAME), 43 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_ID_RECORD_NAME), 44 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_KEYWORD_RECORD_NAME), 45 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_MEDIUM_RECORD_NAME), 46 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_NAME_RECORD_NAME), 47 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_PLACEMENT_RECORD_NAME), 48 | Record::make(Record::TYPE_BLOB, Archiver::CAMPAIGN_SOURCE_RECORD_NAME), 49 | Record::make(Record::TYPE_BLOB, Archiver::HIERARCHICAL_SOURCE_MEDIUM_RECORD_NAME), 50 | ]; 51 | } 52 | 53 | protected function aggregate(ArchiveProcessor $archiveProcessor): array 54 | { 55 | $logAggregator = $archiveProcessor->getLogAggregator(); 56 | 57 | $reports = []; 58 | foreach ($this->getRecordToDimensions() as $recordName => $ignore) { 59 | $reports[$recordName] = new DataTable(); 60 | } 61 | 62 | // list of all dimensions to query for 63 | $dimensions = array_merge(...array_values($this->getRecordToDimensions())); 64 | $dimensions = array_merge(...$dimensions); 65 | $dimensions = array_unique($dimensions); 66 | 67 | $this->aggregateFromLogs($logAggregator, $reports, $dimensions, 'log_visit', 'queryVisitsByDimension'); 68 | $this->aggregateFromLogs($logAggregator, $reports, $dimensions, 'log_conversion', 'queryConversionsByDimension'); 69 | 70 | foreach ($reports as $report) { 71 | $report->filter(DataTable\Filter\EnrichRecordWithGoalMetricSums::class); 72 | } 73 | 74 | return $reports; 75 | } 76 | 77 | /** 78 | * @param DataTable[] $records 79 | */ 80 | protected function aggregateFromLogs(LogAggregator $logAggregator, array $records, $dimensions, $table, $aggregatorMethod): void 81 | { 82 | $systemSettings = StaticContainer::get(SystemSettings::class); 83 | if (!$systemSettings->doNotChangeCaseOfUtmParameters->getValue()) { 84 | $newDimensions = []; 85 | foreach ($dimensions as $dimension) { 86 | $lowerDimensionColumn = $table . '.' . $dimension; 87 | $newDimensions[$dimension] = "LOWER($lowerDimensionColumn)"; 88 | } 89 | $dimensions = $newDimensions; 90 | } 91 | 92 | $whereClause = $table . ".referer_type = " . Common::REFERRER_TYPE_CAMPAIGN; 93 | $query = $aggregatorMethod === 'queryConversionsByDimension' && version_compare(Version::VERSION, '5.2.0-b6', '>=') 94 | ? $logAggregator->$aggregatorMethod($dimensions, $whereClause, [], [], false, false, true) 95 | : $logAggregator->$aggregatorMethod($dimensions, $whereClause); 96 | 97 | $recordToDimensions = $this->getRecordToDimensions(); 98 | 99 | while ($row = $query->fetch()) { 100 | foreach ($recordToDimensions as $recordName => $dimensionsForRecord) { 101 | $record = $records[$recordName]; 102 | 103 | $mainLabelDimensions = $dimensionsForRecord[0]; 104 | $mainLabel = $this->getLabelFromRowDimensions($mainLabelDimensions, $row); 105 | if (empty($mainLabel)) { 106 | continue; 107 | } 108 | 109 | if ($aggregatorMethod == 'queryVisitsByDimension') { 110 | $columns = [ 111 | Metrics::INDEX_NB_UNIQ_VISITORS => $row[Metrics::INDEX_NB_UNIQ_VISITORS], 112 | Metrics::INDEX_NB_VISITS => $row[Metrics::INDEX_NB_VISITS], 113 | Metrics::INDEX_NB_ACTIONS => $row[Metrics::INDEX_NB_ACTIONS], 114 | Metrics::INDEX_NB_USERS => $row[Metrics::INDEX_NB_USERS], 115 | Metrics::INDEX_MAX_ACTIONS => $row[Metrics::INDEX_MAX_ACTIONS], 116 | Metrics::INDEX_SUM_VISIT_LENGTH => $row[Metrics::INDEX_SUM_VISIT_LENGTH], 117 | Metrics::INDEX_BOUNCE_COUNT => $row[Metrics::INDEX_BOUNCE_COUNT], 118 | Metrics::INDEX_NB_VISITS_CONVERTED => $row[Metrics::INDEX_NB_VISITS_CONVERTED], 119 | ]; 120 | } elseif ($aggregatorMethod == 'queryConversionsByDimension') { 121 | $idGoal = (int) $row['idgoal']; 122 | $columns = [ 123 | Metrics::INDEX_GOALS => [ 124 | $idGoal => Metrics::makeGoalColumnsRow($idGoal, $row), 125 | ], 126 | ]; 127 | } else { 128 | throw new \Exception("unknown aggregator method $aggregatorMethod"); 129 | } 130 | 131 | $topLevelRow = $record->sumRowWithLabel($mainLabel, $columns); 132 | 133 | if (isset($dimensionsForRecord[1])) { 134 | $subLabelDimensions = $dimensionsForRecord[1]; 135 | $subLabel = $this->getLabelFromRowDimensions($subLabelDimensions, $row); 136 | if (empty($subLabel)) { 137 | continue; 138 | } 139 | $topLevelRow->sumRowWithLabelToSubtable($subLabel, $columns); 140 | } 141 | } 142 | } 143 | } 144 | 145 | protected function getLabelFromRowDimensions(array $dimensionsAsLabel, array $row): string 146 | { 147 | $labels = []; 148 | foreach ($dimensionsAsLabel as $dimensionLabelPart) { 149 | if ( 150 | isset($row[$dimensionLabelPart]) 151 | && $row[$dimensionLabelPart] != '' 152 | ) { 153 | $labels[] = $row[$dimensionLabelPart]; 154 | } 155 | } 156 | 157 | return implode(Archiver::SEPARATOR_COMBINED_DIMENSIONS, $labels); 158 | } 159 | 160 | protected function getRecordToDimensions(): array 161 | { 162 | return [ 163 | Archiver::CAMPAIGN_ID_RECORD_NAME => [ 164 | ["campaign_id"] 165 | ], 166 | Archiver::CAMPAIGN_NAME_RECORD_NAME => [ 167 | ["campaign_name"], 168 | ["campaign_keyword", "campaign_content"], 169 | ], 170 | Archiver::CAMPAIGN_KEYWORD_RECORD_NAME => [ 171 | ["campaign_keyword"], 172 | ], 173 | Archiver::CAMPAIGN_SOURCE_RECORD_NAME => [ 174 | ["campaign_source"], 175 | ], 176 | Archiver::CAMPAIGN_MEDIUM_RECORD_NAME => [ 177 | ["campaign_medium"], 178 | ], 179 | Archiver::CAMPAIGN_CONTENT_RECORD_NAME => [ 180 | ["campaign_content"], 181 | ], 182 | Archiver::HIERARCHICAL_SOURCE_MEDIUM_RECORD_NAME => [ 183 | ["campaign_source", "campaign_medium"], 184 | ["campaign_name"], 185 | ], 186 | Archiver::CAMPAIGN_GROUP_RECORD_NAME => [ 187 | ["campaign_group"], 188 | ], 189 | Archiver::CAMPAIGN_PLACEMENT_RECORD_NAME => [ 190 | ["campaign_placement"], 191 | ], 192 | ]; 193 | } 194 | } 195 | -------------------------------------------------------------------------------- /Reports/Base.php: -------------------------------------------------------------------------------- 1 | categoryId = 'Referrers_Referrers'; 21 | $this->onlineGuideUrl = Url::addCampaignParametersToMatomoLink('https://matomo.org/guide/reports/acquisition-and-marketing-channels/'); 22 | } 23 | 24 | public function configureView(ViewDataTable $view) 25 | { 26 | $view->config->addTranslation('label', $this->dimension->getName()); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetContent.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignContent(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Contents'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 5; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetGroup.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignGroup(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Groups'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 8; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetId.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignId(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_CampaignIds'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 7; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetKeyword.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignKeyword(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Keywords'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 2; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetKeywordContentFromNameId.php: -------------------------------------------------------------------------------- 1 | dimension = new CombinedKeywordContent(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_CombinedKeywordContent'); 23 | $this->isSubtableReport = true; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Reports/GetMedium.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignMedium(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Mediums'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 4; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetName.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignName(); 24 | $this->name = Piwik::translate('MarketingCampaignsReporting_Names'); 25 | $this->actionToLoadSubTables = 'getKeywordContentFromNameId'; 26 | $this->hasGoalMetrics = true; 27 | $this->order = 1; 28 | 29 | $this->subcategoryId = 'Referrers_Campaigns'; 30 | } 31 | 32 | public function configureView(ViewDataTable $view) 33 | { 34 | parent::configureView($view); 35 | $view->config->subtable_controller_action = 'getKeywordContentFromNameId'; 36 | $this->configureFooterMessage($view); 37 | } 38 | 39 | 40 | protected function configureFooterMessage(ViewDataTable $view) 41 | { 42 | if ($this->isSubtableReport) { 43 | // no footer message for subtables 44 | return; 45 | } 46 | 47 | $out = ''; 48 | EventDispatcher::getInstance()->postEvent('Template.afterCampaignsReport', array(&$out)); 49 | $view->config->show_footer_message = $out; 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Reports/GetNameFromSourceMediumId.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignName(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_CombinedSourcesMediums'); 23 | $this->isSubtableReport = true; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Reports/GetPlacement.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignPlacement(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Placements'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 9; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetSource.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignSource(); 22 | $this->name = Piwik::translate('MarketingCampaignsReporting_Sources'); 23 | $this->hasGoalMetrics = true; 24 | $this->order = 3; 25 | 26 | $this->subcategoryId = 'Referrers_Campaigns'; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Reports/GetSourceMedium.php: -------------------------------------------------------------------------------- 1 | dimension = new CampaignSourceMedium(); 23 | $this->name = Piwik::translate('MarketingCampaignsReporting_CombinedSourcesMediums'); 24 | $this->actionToLoadSubTables = 'getNameFromSourceMediumId'; 25 | $this->hasGoalMetrics = true; 26 | $this->order = 6; 27 | 28 | $this->subcategoryId = 'Referrers_Campaigns'; 29 | } 30 | 31 | public function configureView(ViewDataTable $view) 32 | { 33 | parent::configureView($view); 34 | $view->config->subtable_controller_action = 'getNameFromSourceMediumId'; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /SystemSettings.php: -------------------------------------------------------------------------------- 1 | doNotChangeCaseOfUtmParameters = $this->makeSetting('doNotChangeCaseOfUtmParameters', true, FieldConfig::TYPE_BOOL, function (FieldConfig $field) { 25 | $field->title = Piwik::translate('MarketingCampaignsReporting_DoNotChangeCaseOfUtmParametersTitle'); 26 | $field->description = Piwik::translate('MarketingCampaignsReporting_DoNotChangeCaseOfUtmParametersDescription'); 27 | $field->uiControl = FieldConfig::UI_CONTROL_CHECKBOX; 28 | }); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /Tracker/RequestProcessor.php: -------------------------------------------------------------------------------- 1 | getProperty((new CampaignName())->getColumnName()); 28 | $campaignKeyword = $visitProperties->getProperty((new CampaignKeyword())->getColumnName()); 29 | $campaignMedium = $visitProperties->getProperty((new CampaignMedium())->getColumnName()); 30 | $campaignContent = $visitProperties->getProperty((new CampaignContent())->getColumnName()); 31 | $campaignSource = $visitProperties->getProperty((new CampaignSource())->getColumnName()); 32 | $campaignId = $visitProperties->getProperty((new CampaignId())->getColumnName()); 33 | $campaignGroup = $visitProperties->getProperty((new CampaignGroup())->getColumnName()); 34 | $campaignPlacement = $visitProperties->getProperty((new CampaignPlacement())->getColumnName()); 35 | 36 | if ( 37 | !empty($campaignContent) || !empty($campaignId) || !empty($campaignKeyword) || 38 | !empty($campaignMedium) || !empty($campaignName) || !empty($campaignSource) || 39 | !empty($campaignGroup) || !empty($campaignPlacement) 40 | ) { 41 | $visitProperties->setProperty('referer_type', Common::REFERRER_TYPE_CAMPAIGN); 42 | } 43 | 44 | if ($campaignName) { 45 | $visitProperties->setProperty('referer_name', substr($campaignName, 0, 255)); 46 | } 47 | 48 | if ($campaignKeyword) { 49 | $visitProperties->setProperty('referer_keyword', substr($campaignKeyword, 0, 255)); 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /Updates/5.1.0.php: -------------------------------------------------------------------------------- 1 | migration = $factory; 28 | } 29 | 30 | public function doUpdate(Updater $updater) 31 | { 32 | // set the SystemSetting to false for existing installs as it will be true by default 33 | $systemSettings = StaticContainer::get(SystemSettings::class); 34 | $systemSettings->doNotChangeCaseOfUtmParameters->setIsWritableByCurrentUser(true); 35 | $systemSettings->doNotChangeCaseOfUtmParameters->setValue(false); 36 | $systemSettings->save(); 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /VisitorDetails.php: -------------------------------------------------------------------------------- 1 | 'campaign_id', 23 | 'campaignContent' => 'campaign_content', 24 | 'campaignKeyword' => 'campaign_keyword', 25 | 'campaignMedium' => 'campaign_medium', 26 | 'campaignName' => 'campaign_name', 27 | 'campaignSource' => 'campaign_source', 28 | 'campaignGroup' => 'campaign_group', 29 | 'campaignPlacement' => 'campaign_placement', 30 | ); 31 | 32 | foreach ($fields as $name => $field) { 33 | $visitor[$name] = empty($this->details[$field]) ? '' : $this->details[$field]; 34 | } 35 | } 36 | 37 | public function renderVisitorDetails($visitorDetails) 38 | { 39 | $campaignData = []; 40 | $fields = array( 41 | 'campaignId' => Piwik::translate('MarketingCampaignsReporting_CampaignId'), 42 | 'campaignName' => Piwik::translate('MarketingCampaignsReporting_Name'), 43 | 'campaignMedium' => Piwik::translate('MarketingCampaignsReporting_Medium'), 44 | 'campaignContent' => Piwik::translate('MarketingCampaignsReporting_Content'), 45 | 'campaignKeyword' => Piwik::translate('MarketingCampaignsReporting_Keyword'), 46 | 'campaignSource' => Piwik::translate('MarketingCampaignsReporting_Source'), 47 | 'campaignGroup' => Piwik::translate('MarketingCampaignsReporting_Group'), 48 | 'campaignPlacement' => Piwik::translate('MarketingCampaignsReporting_Placement'), 49 | ); 50 | 51 | foreach ($fields as $field => $name) { 52 | if (!empty($visitorDetails[$field])) { 53 | $campaignData[$name] = html_entity_decode($visitorDetails[$field], ENT_QUOTES, 'UTF-8'); 54 | } 55 | } 56 | 57 | $view = new View('@MarketingCampaignsReporting/visitorDetails'); 58 | $view->sendHeadersWhenRendering = false; 59 | $view->campaign = $campaignData; 60 | return [[30, $view->render()]]; 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /config/config.php: -------------------------------------------------------------------------------- 1 | Piwik\DI::autowire( 9 | '\Piwik\Plugins\MarketingCampaignsReporting\Campaign\CampaignDetector' 10 | ), 11 | 'advanced_campaign_reporting.uri_parameters.campaign_name' => Piwik\DI::factory(function (Container $c) { 12 | return [ 13 | (new Columns\CampaignName())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_name') ? 14 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_name'))) : 15 | MarketingCampaignsReporting::$CAMPAIGN_NAME_FIELD_DEFAULT_URL_PARAMS 16 | ]; 17 | }), 18 | 'advanced_campaign_reporting.uri_parameters.campaign_keyword' => Piwik\DI::factory(function (Container $c) { 19 | return [ 20 | (new Columns\CampaignKeyword())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_keyword') ? 21 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_keyword'))) : 22 | MarketingCampaignsReporting::$CAMPAIGN_KEYWORD_FIELD_DEFAULT_URL_PARAMS 23 | ]; 24 | }), 25 | 'advanced_campaign_reporting.uri_parameters.campaign_source' => Piwik\DI::factory(function (Container $c) { 26 | return [ 27 | (new Columns\CampaignSource())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_source') ? 28 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_source'))) : 29 | MarketingCampaignsReporting::$CAMPAIGN_SOURCE_FIELD_DEFAULT_URL_PARAMS 30 | ]; 31 | }), 32 | 'advanced_campaign_reporting.uri_parameters.campaign_medium' => Piwik\DI::factory(function (Container $c) { 33 | return [ 34 | (new Columns\CampaignMedium())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_medium') ? 35 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_medium'))) : 36 | MarketingCampaignsReporting::$CAMPAIGN_MEDIUM_FIELD_DEFAULT_URL_PARAMS 37 | ]; 38 | }), 39 | 'advanced_campaign_reporting.uri_parameters.campaign_content' => Piwik\DI::factory(function (Container $c) { 40 | return [ 41 | (new Columns\CampaignContent())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_content') ? 42 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_content'))) : 43 | MarketingCampaignsReporting::$CAMPAIGN_CONTENT_FIELD_DEFAULT_URL_PARAMS 44 | ]; 45 | }), 46 | 'advanced_campaign_reporting.uri_parameters.campaign_id' => Piwik\DI::factory(function (Container $c) { 47 | return [ 48 | (new Columns\CampaignId())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_id') ? 49 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_id'))) : 50 | MarketingCampaignsReporting::$CAMPAIGN_ID_FIELD_DEFAULT_URL_PARAMS 51 | ]; 52 | }), 53 | 'advanced_campaign_reporting.uri_parameters.campaign_group' => Piwik\DI::factory(function (Container $c) { 54 | return [ 55 | (new Columns\CampaignGroup())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_group') ? 56 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_group'))) : 57 | MarketingCampaignsReporting::$CAMPAIGN_GROUP_FIELD_DEFAULT_URL_PARAMS 58 | ]; 59 | }), 60 | 'advanced_campaign_reporting.uri_parameters.campaign_placement' => Piwik\DI::factory(function (Container $c) { 61 | return [ 62 | (new Columns\CampaignPlacement())->getColumnName() => $c->has('ini.MarketingCampaignsReporting.campaign_placement') ? 63 | array_map('trim', explode(',', $c->get('ini.MarketingCampaignsReporting.campaign_placement'))) : 64 | MarketingCampaignsReporting::$CAMPAIGN_PLACEMENT_FIELD_DEFAULT_URL_PARAMS 65 | ]; 66 | }), 67 | ]; 68 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ## Documentation 2 | 3 | Learn more about tracking campaigns in Piwik in our [user guide](https://matomo.org/docs/tracking-campaigns/) and use the [URL Builder](https://matomo.org/docs/tracking-campaigns-url-builder/) to generate URLs ready to use for tracking campaigns in Piwik. 4 | -------------------------------------------------------------------------------- /lang/am.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Keyword": "ቁልፍ ቃላት" 4 | } 5 | } -------------------------------------------------------------------------------- /lang/ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CombinedSourceMedium": "المصدر - الوسيلة", 4 | "CampaignId": "معرّف الحملة", 5 | "CombinedKeywordContent": "الكلمة الأساسية - المحتوى", 6 | "Names": "أسماء الحملة", 7 | "Keywords": "الكلمات الأساسية للحملة", 8 | "Sources": "مصادر الحملة", 9 | "Mediums": "وسائل الحملة", 10 | "Contents": "محتويات الحملة", 11 | "CombinedSourcesMediums": "مصدر - وسيلة الحملة" 12 | } 13 | } -------------------------------------------------------------------------------- /lang/az.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/be.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Кампаніі", 4 | "Name": "Імя", 5 | "Keyword": "Ключавое слова" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/bg.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Номер на кампания", 4 | "CampaignIds": "ID-та на кампании", 5 | "CombinedKeywordContent": "Ключови думи — Съдържание", 6 | "CombinedSourceMedium": "Източник - среда", 7 | "CombinedSourcesMediums": "Източник на кампанията — Средно", 8 | "Content": "Съдържание на кампанията", 9 | "Contents": "Съдържание на кампанията", 10 | "Group": "Група кампании", 11 | "Groups": "Групи кампании", 12 | "Keyword": "Ключова дума на кампанията", 13 | "Keywords": "Ключови думи за кампанията", 14 | "Medium": "Среда на кампанията", 15 | "Mediums": "Среди за кампанията", 16 | "Name": "Име на кампания", 17 | "Names": "Имена на кампанията", 18 | "Placement": "Разположение на кампанията", 19 | "Placements": "Разположения на кампании", 20 | "Source": "Източник на кампанията", 21 | "Sources": "Източници за кампанията" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/bn.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "নাম" 4 | } 5 | } -------------------------------------------------------------------------------- /lang/bs.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Ime", 4 | "Keyword": "Ključna riječ", 5 | "Source": "Izvor" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/ca.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id de Campanya", 4 | "CampaignIds": "Identificadors de campanya", 5 | "CombinedKeywordContent": "Paraula clau - Contingut", 6 | "CombinedSourceMedium": "Font - Mig", 7 | "CombinedSourcesMediums": "Font de campanya - Mig", 8 | "Content": "Contingut de la campanya", 9 | "Contents": "Continguts de campanya", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Quan estigui activat, Matomo mantindrà la majúscula original dels paràmetres de la campanya per garantir la compatibilitat amb serveis de tercers com Google. Si està desactivat, tots els paràmetres de la campanya es convertiran a minúscules.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Manteniu les majúscules dels paràmetres de la campanya", 12 | "Group": "Grup de la campanya", 13 | "Groups": "Grups de campanya", 14 | "Keyword": "Paraula clau de la campanya", 15 | "Keywords": "Paraules clau de campanya", 16 | "Medium": "Mitjà de la campanya", 17 | "Mediums": "Mitjans de campanya", 18 | "Name": "Nom de la campanya", 19 | "Names": "Noms de campanya", 20 | "Placement": "Col·locació de la campanya", 21 | "Placements": "Col·locacions de campanya", 22 | "Source": "Orígen de la campanya", 23 | "Sources": "Orígens de campanya" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/cs.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id kampaně", 4 | "CampaignIds": "Identifikace kampaně", 5 | "CombinedKeywordContent": "Klíčové slovo - obsah", 6 | "CombinedSourceMedium": "Zdroj - médium", 7 | "CombinedSourcesMediums": "Zdroj kampaně - médium", 8 | "Content": "Obsah kampaně", 9 | "Contents": "Obsah kampaně", 10 | "Group": "Skupina kampaně", 11 | "Groups": "Skupiny kampaně", 12 | "Keyword": "Klíčové slovo kampaně", 13 | "Keywords": "Klíčová slova kampaně", 14 | "Medium": "Médium kampaně", 15 | "Mediums": "Média kampaně", 16 | "Name": "Název kampaně", 17 | "Names": "Jména kampaní", 18 | "Placement": "Umístění kampaně", 19 | "Placements": "Umístění kampaní", 20 | "Source": "Zdroj kampaně", 21 | "Sources": "Zdroje kampaní" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/cy.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Enw" 4 | } 5 | } -------------------------------------------------------------------------------- /lang/da.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CombinedSourceMedium": "Kilde - medie", 4 | "CampaignId": "Kampagne Id", 5 | "CombinedKeywordContent": "Søgeord - Indhold", 6 | "Names": "Kampagne navne", 7 | "Keywords": "Kampagne søgeord", 8 | "Sources": "Kampagne kilder", 9 | "Mediums": "Kampagne medier", 10 | "Contents": "Kampagne indhold", 11 | "CombinedSourcesMediums": "Kampagne kilde - medie" 12 | } 13 | } -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Kampagnen-Id", 4 | "CampaignIds": "Kampagnen-IDs", 5 | "CombinedKeywordContent": "Suchbegriff - Inhalt", 6 | "CombinedSourceMedium": "Herkunftsseite - Medium", 7 | "CombinedSourcesMediums": "Kampagne Herkunftsseite - Medium", 8 | "Content": "Kampagneninhalt", 9 | "Contents": "Kampagneninhalte", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Wenn aktiviert, behält Matomo die ursprüngliche Groß- und Kleinschreibung von Kampagnenparametern bei, um die Kompatibilität mit Drittanbieterdiensten wie Google zu gewährleisten. Wenn deaktiviert, werden alle Kampagnenparameter in Kleinbuchstaben umgewandelt.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Großschreibung der Kampagnenparameter beibehalten", 12 | "Group": "Kampagnengruppe", 13 | "Groups": "Kampagnengruppen", 14 | "Keyword": "Kampagnenschlüsselwort", 15 | "Keywords": "Kampagnensuchbegriffe", 16 | "Medium": "Kampagnen Medium", 17 | "Mediums": "Kampagne Medien", 18 | "Name": "Kampagnenname", 19 | "Names": "Kampagnennamen", 20 | "Placement": "Kampagnenplatzierung", 21 | "Placements": "Kampagnenplatzierungen", 22 | "Source": "Kampagnen Herkunftsseite", 23 | "Sources": "Kampagnen Herkunftsseiten" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/dv.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/el.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Αναγνωριστικό Καμπάνιας", 4 | "CampaignIds": "Αναγνωριστικά Καμπάνιας", 5 | "CombinedKeywordContent": "Λέξη κλειδί - Περιεχόμενο", 6 | "CombinedSourceMedium": "Πηγή - Μέσο", 7 | "CombinedSourcesMediums": "Πηγή Καμπάνιας - Μέσο", 8 | "Content": "Περιεχόμενο Καμπάνιας", 9 | "Contents": "Περιεχόμενο Καμπάνιας", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Όταν είναι ενεργό, το Matomo θα διατηρεί την αρχική ρύθμιση για τα κεφαλαία των παραμέτρων καμπάνιας για να διατηρείται η συμβατότητα με υπηρεσίες τρίτων, όπως το Google. Αν είναι ανενεργό, όλες οι παράμετροι καμπάνιας θα μετατρέπονται σε πεζά.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Να διατηρηθεί η ρύθμιση κεφαλαίων της παραμέτρου καμπάνιας", 12 | "Group": "Ομάδα Καμπάνιας", 13 | "Groups": "Ομάδες Καμπάνιας", 14 | "Keyword": "Λέξη Κλειδί Καμπάνιας", 15 | "Keywords": "Λέξεις Κλειδιά Καμπάνιας", 16 | "Medium": "Μέσο Καμπάνιας", 17 | "Mediums": "Μέσα Καμπάνιας", 18 | "Name": "Όνομα Καμπάνιας", 19 | "Names": "Ονόματα Καμπανιών", 20 | "Placement": "Τοποθέτηση Καμπάνιας", 21 | "Placements": "Τοποθετήσεις Καμπάνιας", 22 | "Source": "Πηγή Καμπάνιας", 23 | "Sources": "Πηγές Καμπάνιας" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Campaign Name", 4 | "Keyword": "Campaign Keyword", 5 | "Source": "Campaign Source", 6 | "Medium": "Campaign Medium", 7 | "Content": "Campaign Content", 8 | "Group": "Campaign Group", 9 | "Placement": "Campaign Placement", 10 | "CombinedSourceMedium": "Source - Medium", 11 | "CampaignId": "Campaign Id", 12 | "CombinedKeywordContent": "Keyword - Content", 13 | "Names": "Campaign Names", 14 | "Keywords": "Campaign Keywords", 15 | "Sources": "Campaign Sources", 16 | "Mediums": "Campaign Mediums", 17 | "Contents": "Campaign Contents", 18 | "Groups": "Campaign Groups", 19 | "Placements": "Campaign Placements", 20 | "CampaignIds": "Campaign Ids", 21 | "CombinedSourcesMediums": "Campaign Source - Medium", 22 | "DoNotChangeCaseOfUtmParametersTitle": "Keep campaign parameter capitalisation", 23 | "DoNotChangeCaseOfUtmParametersDescription": "When enabled, Matomo will keep the original capitalisation of campaign parameters to ensure compatibility with third-party services like Google. If disabled, all campaign parameters will be converted to lowercase." 24 | } 25 | } -------------------------------------------------------------------------------- /lang/eo.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Nomo", 4 | "Keyword": "Klavvorto", 5 | "Source": "Fonto" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/es-ar.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Source": "Fuente de campaña", 4 | "Medium": "Medio de campaña", 5 | "CombinedSourceMedium": "Fuente - Medio", 6 | "CampaignId": "Identificador de campaña", 7 | "CombinedKeywordContent": "Palabra clave - Contenido", 8 | "Names": "Nombres de campaña", 9 | "Keywords": "Palabras clave de campaña", 10 | "Sources": "Fuentes de campaña", 11 | "Mediums": "Medios de campaña", 12 | "Contents": "Contenidos de campaña", 13 | "CombinedSourcesMediums": "Fuente - Medio de campaña" 14 | } 15 | } -------------------------------------------------------------------------------- /lang/es.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id de Campaña", 4 | "CampaignIds": "ID de campaña", 5 | "CombinedKeywordContent": "Palabra clave - Contenido", 6 | "CombinedSourceMedium": "Fuente - Medio", 7 | "CombinedSourcesMediums": "Fuente de la campaña - Medio", 8 | "Content": "Contenido de la campaña", 9 | "Contents": "Contenidos de la campaña", 10 | "Group": "Grupo de campaña", 11 | "Groups": "Grupos de campaña", 12 | "Keyword": "Palabra clave de la campaña", 13 | "Keywords": "Palabras clave de campaña", 14 | "Medium": "Medio de la campaña", 15 | "Mediums": "Medios de la campaña", 16 | "Name": "Nombre de la campaña", 17 | "Names": "Nombres de campaña", 18 | "Placement": "Ubicación de la campaña", 19 | "Placements": "Ubicaciones de campaña", 20 | "Source": "Fuente de la campaña", 21 | "Sources": "Fuentes de la campaña" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/et.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Kampaania ID", 4 | "Names": "Kampaaniate nimed" 5 | } 6 | } -------------------------------------------------------------------------------- /lang/eu.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Kanpainaren id-a", 4 | "CampaignIds": "Kanpainen id-ak", 5 | "CombinedKeywordContent": "Gako-hitza - Edukia", 6 | "CombinedSourceMedium": "Iturburua - Euskarria", 7 | "CombinedSourcesMediums": "Kanpainaren iturburua - Euskarria", 8 | "Content": "Kanpainaren edukia", 9 | "Contents": "Kanpainen edukiak", 10 | "Group": "Kanpainaren taldea", 11 | "Groups": "Kanpainen taldeak", 12 | "Keyword": "Kanpainaren gako-hitza", 13 | "Keywords": "Kanpainen gako-hitzak", 14 | "Medium": "Kanpainaren euskarria", 15 | "Mediums": "Kanpainen euskarriak", 16 | "Name": "Kanpainaren izena", 17 | "Names": "Kanpainen izenak", 18 | "Placement": "Kanpainaren kokapena", 19 | "Placements": "Kanpainen kokapenak", 20 | "Source": "Kanpainaren iturburua", 21 | "Sources": "Kanpainen iturburuak", 22 | "Title": "Kanpainak" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /lang/fa.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "کمپین", 4 | "Name": "نام", 5 | "Keyword": "کلمه کلیدی", 6 | "Source": "منبع" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/fi.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Source": "Kampanjan lähde", 4 | "Medium": "Kampanjan media", 5 | "CombinedSourceMedium": "Lähde - media", 6 | "CampaignId": "Kampanjan ID", 7 | "CombinedKeywordContent": "Avainsana - sisältö", 8 | "Names": "Kampanjan nimet", 9 | "Keywords": "Kampanjan avainsanat", 10 | "Sources": "Kampanjan lähteet", 11 | "Mediums": "Kampanjan mediat", 12 | "Contents": "Kampanjan sisällöt", 13 | "CombinedSourcesMediums": "Kampanjan lähde - media" 14 | } 15 | } -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id de campagne", 4 | "CampaignIds": "Identifiants de campagne", 5 | "CombinedKeywordContent": "Mot-clé - Contenu", 6 | "CombinedSourceMedium": "Source - Media", 7 | "CombinedSourcesMediums": "Source de la campagne - Media", 8 | "Content": "Contenu de la campagne", 9 | "Contents": "Contenus de la campagne", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Lorsque cette option est activée, Matomo conservera la casse d'origine des paramètres de campagne pour assurer la compatibilité avec les services tiers comme Google. Si elle est désactivée, tous les paramètres de campagne seront convertis en minuscules.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Conserver la casse des paramètres de campagne", 12 | "Group": "Groupe de campagne", 13 | "Groups": "Groupes de campagne", 14 | "Keyword": "Mot clé de la campagne", 15 | "Keywords": "Mots-clés de la campagne", 16 | "Medium": "Mëdia de la campagne", 17 | "Mediums": "Media de campagne", 18 | "Name": "Nom de la campagne", 19 | "Names": "Noms de campagne", 20 | "Placement": "Emplacement de la campagne", 21 | "Placements": "Emplacements de campagne", 22 | "Source": "Source de la campagne", 23 | "Sources": "Sources de campagne" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/ga.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Aitheantas an Fheachtais", 4 | "CampaignIds": "Aitheantas Feachtas", 5 | "CombinedKeywordContent": "Eochairfhocal - Ábhar", 6 | "CombinedSourceMedium": "Foinse - Meánach", 7 | "CombinedSourcesMediums": "Foinse Feachtais - Meánach", 8 | "Content": "Ábhar an Fheachtais", 9 | "Contents": "Ábhair na bhFeachtas", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Nuair a bheidh sé cumasaithe, coimeádfaidh Matomo an caipitliú bunaidh ar pharaiméadair feachtais chun comhoiriúnacht le seirbhísí tríú páirtí ar nós Google a chinntiú. Má tá sé díchumasaithe, déanfar gach paraiméadair feachtais a thiontú go cás íochtair.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Coinnigh an chaipitliú paraiméadar feachtais", 12 | "Group": "Grúpa Feachtais", 13 | "Groups": "Grúpaí Feachtais", 14 | "Keyword": "Eochairfhocal Feachtais", 15 | "Keywords": "Eochairfhocail Feachtais", 16 | "Medium": "Meán Feachtas", 17 | "Mediums": "Meán Feachtais", 18 | "Name": "Ainm an Fheachtais", 19 | "Names": "Ainmneacha Feachtas", 20 | "Placement": "Socrúchán Feachtas", 21 | "Placements": "Socrúcháin Feachtais", 22 | "Source": "Foinse Feachtais", 23 | "Sources": "Foinsí Feachtais" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/gl.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Campañas", 4 | "Name": "Nome" 5 | } 6 | } -------------------------------------------------------------------------------- /lang/gu.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "ઝુંબેશ આઈડી", 4 | "CampaignIds": "ઝુંબેશ આઈડી", 5 | "CombinedKeywordContent": "કીવર્ડ - સામગ્રી", 6 | "CombinedSourceMedium": "સ્ત્રોત - માધ્યમ", 7 | "CombinedSourcesMediums": "ઝુંબેશ સ્ત્રોત - માધ્યમ", 8 | "Content": "ઝુંબેશ સામગ્રી", 9 | "Contents": "ઝુંબેશની સામગ્રી", 10 | "Group": "ઝુંબેશ જૂથ", 11 | "Groups": "ઝુંબેશ જૂથો", 12 | "Keyword": "ઝુંબેશ કીવર્ડ", 13 | "Keywords": "ઝુંબેશ કીવર્ડ્સ", 14 | "Medium": "ઝુંબેશ માધ્યમ", 15 | "Mediums": "ઝુંબેશ માધ્યમો", 16 | "Name": "ઝુંબેશનું નામ", 17 | "Names": "ઝુંબેશના નામ", 18 | "Placement": "ઝુંબેશ પ્લેસમેન્ટ", 19 | "Placements": "ઝુંબેશ પ્લેસમેન્ટ્સ", 20 | "Source": "ઝુંબેશ સ્ત્રોત", 21 | "Sources": "ઝુંબેશ સ્ત્રોતો" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/he.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "מזהה קמפיין", 4 | "CombinedKeywordContent": "חיפוש שאילתא - תוכן", 5 | "Contents": "תוכן קמפיין", 6 | "Keywords": "חיפוש קמפיין", 7 | "Name": "שם קמפיין", 8 | "Names": "שמות קמפיין" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /lang/hi.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "अभियान आईडी", 4 | "CampaignIds": "अभियान आईडीस", 5 | "CombinedKeywordContent": "कीवर्ड - सामग्री", 6 | "CombinedSourceMedium": "स्रोत - मध्यम", 7 | "CombinedSourcesMediums": "अभियान का स्रोत - मध्यम", 8 | "Content": "अभियान सामग्री", 9 | "Contents": "अभियान सामग्रीया", 10 | "Group": "अभियान समूह", 11 | "Groups": "अभियान समूहों", 12 | "Keyword": "अभियान कीवर्ड", 13 | "Keywords": "अभियान कीवर्डस", 14 | "Medium": "अभियान माध्यम", 15 | "Mediums": "अभियान माध्यमों", 16 | "Name": "अभियान का नाम", 17 | "Names": "अभियान के नाम", 18 | "Placement": "अभियान प्लेसमेंट", 19 | "Placements": "अभियान प्लेसमेंटस", 20 | "Source": "अभियान स्रोत", 21 | "Sources": "अभियान सूत्रों का कहना है" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/hr.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Ime", 4 | "Keyword": "Ključna riječ" 5 | } 6 | } -------------------------------------------------------------------------------- /lang/hu.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampányok", 4 | "Name": "Név", 5 | "Keyword": "Kulcsszó", 6 | "Source": "Forrás" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/hy.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/id.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "ID Kampanye", 4 | "CampaignIds": "ID Kampanye", 5 | "CombinedKeywordContent": "Kata Kunci - Konten", 6 | "CombinedSourceMedium": "Sumber - Media", 7 | "CombinedSourcesMediums": "Sumber Kampanye - Media", 8 | "Content": "Konten Kampanye", 9 | "Contents": "Konten Kampanye", 10 | "Group": "Grup Kampanye", 11 | "Groups": "Grup Kampanye", 12 | "Keyword": "Kata Kunci Kampanye", 13 | "Keywords": "Kata Kunci Kampanye", 14 | "Medium": "Media Kampanye", 15 | "Mediums": "Media Kampanye", 16 | "Name": "Nama Kampanye", 17 | "Names": "Nama Kampanye", 18 | "Placement": "Penempatan Kampanye", 19 | "Placements": "Penempatan Kampanye", 20 | "Source": "Sumber Kampanye", 21 | "Sources": "Sumber Kampanye" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/is.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Herferðir", 4 | "Name": "Nafn", 5 | "Keyword": "Leitarorð" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/it.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Nome Campagna", 4 | "Keyword": "Keyword Campagna", 5 | "Source": "Origine Campagna", 6 | "Medium": "Mezzo Campagna", 7 | "Content": "Contenuto Campagna", 8 | "Group": "Gruppo Campagna", 9 | "Placement": "Piazzamento Campagna", 10 | "CombinedSourceMedium": "Origine - Medium", 11 | "CampaignId": "Id Campagna", 12 | "CombinedKeywordContent": "Keyword - Contenuto", 13 | "Names": "Nomi Campagna", 14 | "Keywords": "Parole chiave campagna", 15 | "Sources": "Origini della Campagna", 16 | "Mediums": "Media della Campagna", 17 | "Contents": "Contenuti Campagna", 18 | "Groups": "Gruppi Campagna", 19 | "Placements": "Piazzamenti Campagna", 20 | "CampaignIds": "Id Campagna", 21 | "CombinedSourcesMediums": "Origine della Campagna - Medium" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "キャンペーン ID", 4 | "CampaignIds": "キャンペーンのID", 5 | "CombinedKeywordContent": "キーワード - コンテンツ", 6 | "CombinedSourceMedium": "ソース‐メディア", 7 | "CombinedSourcesMediums": "キャンペーンソース‐メディア", 8 | "Content": "キャンペーンの内容", 9 | "Contents": "キャンペーンコンテンツ", 10 | "Group": "キャンペーンのグループ", 11 | "Groups": "キャンペーンのグループ", 12 | "Keyword": "キャンペーンのキーワード", 13 | "Keywords": "キャンペーンキーワード", 14 | "Medium": "キャンペーン媒体", 15 | "Mediums": "キャンペーン媒体", 16 | "Name": "キャンペーンの名前", 17 | "Names": "キャンペーン名", 18 | "Placement": "キャンペーンの配置", 19 | "Placements": "キャンペーンの配置", 20 | "Source": "キャンペーンソース", 21 | "Sources": "キャンペーンソース" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ka.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "კამპანიები", 4 | "Name": "სახელი", 5 | "Keyword": "საკვანძო სიტყვა" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/ko.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CombinedSourceMedium": "소스 - 매체", 4 | "CampaignId": "캠페인 아이디", 5 | "CombinedKeywordContent": "키워드 - 내용", 6 | "Names": "캠페인 이름들", 7 | "Keywords": "캠페인 키워드들", 8 | "Sources": "캠페인 소스들", 9 | "Mediums": "캠페인 매체들", 10 | "Contents": "캠페인 내용들", 11 | "CombinedSourcesMediums": "캠페인 소스 - 매체" 12 | } 13 | } -------------------------------------------------------------------------------- /lang/ku.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/lb.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampanijos", 4 | "Name": "Pavadinimas", 5 | "Keyword": "Raktinis žodis", 6 | "Source": "Šaltinis", 7 | "Content": "Turinys" 8 | } 9 | } -------------------------------------------------------------------------------- /lang/lv.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampaņas", 4 | "Name": "Vārds", 5 | "Keyword": "Atslēgvārds" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/ms.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Content": "Kandungan Kempen", 4 | "Group": "Kumpulan Kempen", 5 | "Keyword": "Kata Kunci Kempen", 6 | "Medium": "Medium Kempen", 7 | "Name": "Nama Kempen", 8 | "Source": "Sumber Kempen" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /lang/nb.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Kampanje-ID", 4 | "CampaignIds": "Kampanje-ID-er", 5 | "CombinedKeywordContent": "Nøkkelord – innhold", 6 | "CombinedSourceMedium": "Kilde – medium", 7 | "CombinedSourcesMediums": "Kampanjekilde – medium", 8 | "Content": "Kampanjeinnhold", 9 | "Contents": "Kampanjeinnhold", 10 | "Group": "Kampanjegruppe", 11 | "Groups": "Kampanjegrupper", 12 | "Keyword": "Kampanje-nøkkelord", 13 | "Keywords": "Kampanjenøkkelord", 14 | "Medium": "Kampanjemedium", 15 | "Mediums": "Kampanjemedium", 16 | "Name": "Kampanjenavn", 17 | "Names": "Kampanjenavn", 18 | "Placement": "Kampanjeplassering", 19 | "Placements": "Kampanjeplasseringer", 20 | "Source": "Kampanjekilde", 21 | "Sources": "Kampanjekilder" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/nl.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Campagne Id", 4 | "CampaignIds": "Campagne ID's", 5 | "CombinedKeywordContent": "Sleutelwoord - inhoud", 6 | "CombinedSourceMedium": "Bron - Medium", 7 | "CombinedSourcesMediums": "Campagne Bron - Medium", 8 | "Content": "Campagne inhoud", 9 | "Contents": "Campagne Inhoud", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Indien ingeschakeld, behoudt Matomo de oorspronkelijke hoofdletters in campagneparameters om compatibiliteit met services van derden, zoals Google, te garanderen. Indien uitgeschakeld, worden alle campagneparameters omgezet naar kleine letters.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Behoud hoofdletters in campagneparameters", 12 | "Group": "Campagne groep", 13 | "Groups": "Campagne groepen", 14 | "Keyword": "Campagne trefwoord", 15 | "Keywords": "Campagne Sleutelwoorden", 16 | "Medium": "Campagne Medium", 17 | "Mediums": "Campagne Media", 18 | "Name": "Campagnenaam", 19 | "Names": "Campagne Namen", 20 | "Placement": "Campagne plaatsing", 21 | "Placements": "Campagne plaatsingen", 22 | "Source": "Campagne Bron", 23 | "Sources": "Campagne Bronnen" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/nn.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampanjar", 4 | "Name": "Namn", 5 | "Keyword": "Nøkkelord", 6 | "Source": "Bron" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/pl.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CombinedSourceMedium": "Źródło - Medium", 4 | "CampaignId": "ID kampanii", 5 | "CombinedKeywordContent": "Słowo kluczowe - Zawartość", 6 | "Names": "Nazwa Kampanii", 7 | "Keywords": "Słowa kluczowe Kampanii", 8 | "Sources": "Źródła Kampanii", 9 | "Mediums": "Media Kampanii", 10 | "Contents": "Zawartość kampanii", 11 | "CombinedSourcesMediums": "Źródło Kampanii - Medium" 12 | } 13 | } -------------------------------------------------------------------------------- /lang/pt-br.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id da campanha", 4 | "CampaignIds": "Ids de campanha", 5 | "CombinedKeywordContent": "Palavra-chave - Conteúdo", 6 | "CombinedSourceMedium": "Fonte - Média", 7 | "CombinedSourcesMediums": "Fonte da campanha - Média", 8 | "Content": "Conteúdo da campanha", 9 | "Contents": "Coteúdo da campanha", 10 | "Group": "Grupo da campanha", 11 | "Groups": "Grupos da campanha", 12 | "Keyword": "Palavra-chave da campanha", 13 | "Keywords": "Palavras-chave da campanha", 14 | "Medium": "Ambiente da campanha", 15 | "Mediums": "Média da campanha", 16 | "Name": "Nome da campanha", 17 | "Names": "Nomes da campanha", 18 | "Placement": "Posicionamento da campanha", 19 | "Placements": "Posicionamentos de campanha", 20 | "Source": "Origem da campanha", 21 | "Sources": "Fontes da campanha" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/pt.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "ID da campanha", 4 | "CampaignIds": "Identificadores da campanha", 5 | "CombinedKeywordContent": "Palavra-chave - conteúdo", 6 | "CombinedSourceMedium": "Fonte - media", 7 | "CombinedSourcesMediums": "Fonte da campanha - media", 8 | "Content": "Conteúdo da campanha", 9 | "Contents": "Conteúdos das campanhas", 10 | "Group": "Grupo da campanha", 11 | "Groups": "Grupos da campanha", 12 | "Keyword": "Palavra-chave da campanha", 13 | "Keywords": "Palavras-chave das campanhas", 14 | "Medium": "Media da campanha", 15 | "Mediums": "Media das campanhas", 16 | "Name": "Nome da campanha", 17 | "Names": "Nomes das campanhas", 18 | "Placement": "Posicionamento da campanha", 19 | "Placements": "Posicionamentos da campanha", 20 | "Source": "Fonte da campanha", 21 | "Sources": "Fontes das campanhas" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ro.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Campanii", 4 | "Name": "Nume", 5 | "Keyword": "Cuvânt-cheie", 6 | "Source": "Sursa" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Id кампании", 4 | "CombinedKeywordContent": "Ключевое слово - Контент", 5 | "CombinedSourceMedium": "Источник - Канал", 6 | "CombinedSourcesMediums": "Источники - Каналы", 7 | "Content": "Контент кампании", 8 | "Contents": "Контенты кампании", 9 | "Keyword": "Ключевое слово", 10 | "Keywords": "Ключевые слова кампаний", 11 | "Medium": "Канал кампании", 12 | "Mediums": "Канал", 13 | "Name": "Имя кампании", 14 | "Names": "Имена кампаний", 15 | "Source": "Источник кампании", 16 | "Sources": "Источники кампании" 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /lang/si.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/sk.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampane", 4 | "Name": "Meno", 5 | "Keyword": "Kľúčové slovo", 6 | "Source": "Zdroj" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/sl.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Kampanje", 4 | "Name": "Ime", 5 | "Keyword": "Ključna Beseda", 6 | "Source": "Vir" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/sq.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "ID Fushate", 4 | "CampaignIds": "ID-ra Fushatash", 5 | "CombinedKeywordContent": "Fjalëkyç - Lëndë", 6 | "CombinedSourceMedium": "Burim - Medium", 7 | "CombinedSourcesMediums": "Burim Fushate - Medium", 8 | "Content": "Lëndë Fushate", 9 | "Contents": "Lëndë Fushatash", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Kur aktivizohet, Matomo do të ruajë shkrimin me të madhe a me të vogël, si në origjinal, të parametrave të fushatës, për të garantuar përputhje me shërbime palë të treta, fjala vjen, Google. Në u aktivizoftë, krejt parametra e fushatave do të shndërrohen në shkronjë të vogël.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Ruaj shkrimin e parametrave të fushatës", 12 | "Group": "Grup Fushatash", 13 | "Groups": "Grupe Fushatash", 14 | "Keyword": "Fjalëkyç Fushate", 15 | "Keywords": "Fjalëkyçe Fushatash", 16 | "Medium": "Mjet Fushate", 17 | "Mediums": "Mediume Fushatash", 18 | "Name": "Emër Fushate", 19 | "Names": "Emra Fushatash", 20 | "Placement": "Vendosje Fushate", 21 | "Placements": "Vendosje Fushatash", 22 | "Source": "Burim Fushate", 23 | "Sources": "Burime Fushatash" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/sr.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CombinedSourceMedium": "Izvor - Medium", 4 | "CampaignId": "ID kampanje", 5 | "CombinedKeywordContent": "Ključna reč - sadržaj", 6 | "Names": "Nazivi kampanja", 7 | "Keywords": "Ključne reči kampanja", 8 | "Sources": "Izvori kampanja", 9 | "Mediums": "Mediumi kampanja", 10 | "Contents": "Sadržaji kampanja", 11 | "CombinedSourcesMediums": "Izvor kampanje - medium" 12 | } 13 | } -------------------------------------------------------------------------------- /lang/sv.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "Kampanj", 4 | "Keyword": "Kampanj Nyckelord", 5 | "Source": "Kampanjkälla", 6 | "Medium": "Kampanjkälla - Medium", 7 | "Content": "Kampanjinnehåll", 8 | "Group": "Kampanjgrupp", 9 | "Placement": "Kampanjplacering", 10 | "CombinedSourceMedium": "Källa - Medie", 11 | "CampaignId": "Kampanj-ID", 12 | "CombinedKeywordContent": "Nyckelord - Innehåll", 13 | "Names": "Kampanjnamn", 14 | "Keywords": "Nyckelord för kampanj", 15 | "Sources": "Kampanjkällor", 16 | "Mediums": "Kampanjmedie", 17 | "Contents": "Kampanjinnehåll", 18 | "Groups": "Kampanjgrupp", 19 | "Placements": "Kampanjplaceringar", 20 | "CampaignIds": "Kampanj-ID", 21 | "CombinedSourcesMediums": "Kampanjkälla - Medium" 22 | } 23 | } -------------------------------------------------------------------------------- /lang/ta.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "பிரச்சார ஐடி", 4 | "CampaignIds": "பிரச்சார அடையாளங்கள்", 5 | "CombinedKeywordContent": "முக்கிய சொல் - உள்ளடக்கம்", 6 | "CombinedSourceMedium": "சான்று - நடுத்தர", 7 | "CombinedSourcesMediums": "பிரச்சார சான்று - நடுத்தர", 8 | "Content": "பிரச்சார உள்ளடக்கம்", 9 | "Contents": "பிரச்சார உள்ளடக்கங்கள்", 10 | "DoNotChangeCaseOfUtmParametersDescription": "இயக்கப்பட்டால், கூகிள் போன்ற மூன்றாம் தரப்பு சேவைகளுடன் பொருந்தக்கூடிய தன்மையை உறுதிப்படுத்த பிரச்சார அளவுருக்களின் அசல் மூலதனத்தை MATOMO வைத்திருக்கும். முடக்கப்பட்டால், அனைத்து பிரச்சார அளவுருக்களும் சிறிய எழுத்துக்கு மாற்றப்படும்.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "பிரச்சார அளவுரு மூலதனத்தை வைத்திருங்கள்", 12 | "Group": "பிரச்சாரக் குழு", 13 | "Groups": "பிரச்சாரக் குழுக்கள்", 14 | "Keyword": "திறவுச்சொல்", 15 | "Keywords": "பிரச்சார முக்கிய வார்த்தைகள்", 16 | "Medium": "பிரச்சார ஊடகம்", 17 | "Mediums": "பிரச்சார ஊடகங்கள்", 18 | "Name": "Nom", 19 | "Names": "பிரச்சார பெயர்கள்", 20 | "Placement": "பிரச்சார வேலை வாய்ப்பு", 21 | "Placements": "பிரச்சார வேலைவாய்ப்புகள்", 22 | "Source": "மூலம்", 23 | "Sources": "பிரச்சார ஆதாரங்கள்" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/te.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "ప్రచారాలు", 4 | "Name": "పేరు", 5 | "Keyword": "కీపదం" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/th.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "แคมเปญ", 4 | "Name": "ชื่อ", 5 | "Keyword": "คีย์เวิร์ด" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/tl.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Mga Kampanya", 4 | "Name": "Pangalan", 5 | "Keyword": "Keyword" 6 | } 7 | } -------------------------------------------------------------------------------- /lang/tr.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "Kampanya kimliği", 4 | "CampaignIds": "Kampanya kimlikleri", 5 | "CombinedKeywordContent": "Anahtar sözcük - içerik", 6 | "CombinedSourceMedium": "Kaynak - ortam", 7 | "CombinedSourcesMediums": "Kampanya kaynağı - ortam", 8 | "Content": "Kampanya içeriği", 9 | "Contents": "Kampanya içerikleri", 10 | "DoNotChangeCaseOfUtmParametersDescription": "Bu seçenek açıldığında, Matomo, Google gibi üçüncü taraf hizmetlerle uyumluluğu sağlamak için kampanya parametrelerinin özgün küçük/büyük harf kullanımı korunur. Kapalı olduğunda, tüm kampanya parametreleri küçük harfe dönüştürülür.", 11 | "DoNotChangeCaseOfUtmParametersTitle": "Kampanya parametresiniin küçük/büyük harfleri korunsun", 12 | "Group": "Kampanya grubu", 13 | "Groups": "Kampanya grubu", 14 | "Keyword": "Kampanya anahtar sözcüğü", 15 | "Keywords": "Kampanya anahtar sözcükleri", 16 | "Medium": "Kampanya ortamı", 17 | "Mediums": "Kampanya ortamları", 18 | "Name": "Kampanya adı", 19 | "Names": "Kampanya adları", 20 | "Placement": "Kampanya konumlandırması", 21 | "Placements": "Kampanya konumlandırması", 22 | "Source": "Kampanya kaynağı", 23 | "Sources": "Kampanya kaynakları" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /lang/tzm.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/uk.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "ID кампанії", 4 | "CampaignIds": "ID'и кампанії", 5 | "CombinedKeywordContent": "Ключове слово - Контент", 6 | "CombinedSourceMedium": "Джерело - Носій", 7 | "CombinedSourcesMediums": "Джерело кампанії - Носій", 8 | "Content": "Уміст кампанії", 9 | "Contents": "Контенти кампанії", 10 | "Group": "Група кампанії", 11 | "Groups": "Групи кампанії", 12 | "Keyword": "Ключові слова кампанії", 13 | "Keywords": "Ключові слова кампанії", 14 | "Medium": "Середнє по кампанії", 15 | "Mediums": "Носители кампанії", 16 | "Name": "Назва кампанії", 17 | "Names": "Назви кампаній", 18 | "Placement": "Розміщення кампанії", 19 | "Placements": "Розміщення кампанії", 20 | "Source": "Джерело кампанії", 21 | "Sources": "Джерела кампанії" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /lang/ur.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /lang/vi.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Title": "Các chiến dịch", 4 | "Name": "Tên", 5 | "Keyword": "Từ khóa", 6 | "Source": "Mã nguồn" 7 | } 8 | } -------------------------------------------------------------------------------- /lang/zh-cn.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "Name": "广告活动名称", 4 | "Keyword": "广告系列关键字", 5 | "Source": "广告活动源", 6 | "Medium": "广告媒体", 7 | "Content": "广告活动内容", 8 | "CombinedSourceMedium": "来源 - 中", 9 | "CampaignId": "活动ID", 10 | "CombinedKeywordContent": "关键字 - 内容", 11 | "Names": "活动名称", 12 | "Keywords": "活动关键字", 13 | "Sources": "活动源", 14 | "Mediums": "活动介质", 15 | "Contents": "活动内容", 16 | "CampaignIds": "广告活动编号", 17 | "CombinedSourcesMediums": "活动源-中" 18 | } 19 | } -------------------------------------------------------------------------------- /lang/zh-tw.json: -------------------------------------------------------------------------------- 1 | { 2 | "MarketingCampaignsReporting": { 3 | "CampaignId": "活動 ID", 4 | "CampaignIds": "活動 ID", 5 | "CombinedKeywordContent": "關鍵字 - 內容", 6 | "CombinedSourceMedium": "來源 - 媒介", 7 | "CombinedSourcesMediums": "活動來源 - 媒介", 8 | "Content": "活動內容", 9 | "Contents": "活動內容", 10 | "Group": "活動群組", 11 | "Groups": "活動群組", 12 | "Keyword": "活動關鍵字", 13 | "Keywords": "活動關鍵字", 14 | "Medium": "活動媒介", 15 | "Mediums": "活動媒介", 16 | "Name": "活動名稱", 17 | "Names": "活動名稱", 18 | "Placement": "活動投放", 19 | "Placements": "活動投放", 20 | "Source": "活動來源", 21 | "Sources": "活動來源" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Matomo Coding Standard for MarketingCampaignsReporting plugin 5 | 6 | 7 | 8 | . 9 | 10 | tests/javascript/* 11 | */vendor/* 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | tests/* 20 | 21 | 22 | 23 | 24 | Updates/* 25 | 26 | 27 | 28 | 29 | tests/* 30 | 31 | 32 | 33 | 34 | tests/* 35 | 36 | -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MarketingCampaignsReporting", 3 | "description": "Measure the effectiveness of your marketing campaigns. New reports, segments & track up to five channels: campaign, source, medium, keyword, content.", 4 | "version": "5.1.1", 5 | "keywords": ["Campaign", "Marketing", "Channels", "UTM tags"], 6 | "license": "GPL v3+", 7 | "homepage": "https://matomo.org", 8 | "require": { 9 | "matomo": ">=5.0.0-rc5,<6.0.0-b1" 10 | }, 11 | "support": { 12 | "email": "hello@matomo.org", 13 | "issues": "https://github.com/matomo-org/plugin-MarketingCampaignsReporting/issues", 14 | "forum": "https://forum.matomo.org", 15 | "source": "https://github.com/matomo-org/plugin-MarketingCampaignsReporting", 16 | "wiki": "https://github.com/matomo-org/plugin-MarketingCampaignsReporting/wiki" 17 | }, 18 | "authors": [ 19 | { 20 | "name": "Matomo", 21 | "email": "hello@matomo.org", 22 | "homepage": "https://matomo.org" 23 | } 24 | ], 25 | "category": "insights" 26 | } 27 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | ## Description 2 | 5 | 6 | ## Issue No 7 | 13 | 14 | ## Steps to Replicate the Issue 15 | 1. 16 | 2. 17 | 3. 18 | 19 | 20 | 21 | ## Checklist 22 | - [✔/✖] Tested locally or on demo2/demo3? 23 | - [✔/✖/NA] New test case added/updated? 24 | - [✔/✖/NA] Are all newly added texts included via translation? 25 | - [✔/✖/NA] Are text sanitized properly? (Eg use of v-text v/s v-html for vue) 26 | - [✔/✖/NA] Version bumped? -------------------------------------------------------------------------------- /screenshots/Goal conversion optimisation and marketing campaign conversion rates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-MarketingCampaignsReporting/04107eb18957ad4ecd79c16146e1a0e6a9b02698/screenshots/Goal conversion optimisation and marketing campaign conversion rates.png -------------------------------------------------------------------------------- /screenshots/Marketing-Campaign-Analytics-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-MarketingCampaignsReporting/04107eb18957ad4ecd79c16146e1a0e6a9b02698/screenshots/Marketing-Campaign-Analytics-report.png -------------------------------------------------------------------------------- /screenshots/Segmenting on Marketing Campaign attributes such as Campaign Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matomo-org/plugin-MarketingCampaignsReporting/04107eb18957ad4ecd79c16146e1a0e6a9b02698/screenshots/Segmenting on Marketing Campaign attributes such as Campaign Medium.png -------------------------------------------------------------------------------- /stylesheets/styles.less: -------------------------------------------------------------------------------- 1 | .visitorReferrer.campaign { 2 | display: none; /* do not show default campaign information in visitor log */ 3 | } 4 | 5 | .visitorCampaign { 6 | clear: both; 7 | padding-top: 1em; 8 | } -------------------------------------------------------------------------------- /templates/visitorDetails.twig: -------------------------------------------------------------------------------- 1 | {% if campaign %} 2 |
3 | {{ 'Referrers_ColumnCampaign'|translate }}
4 | {% for name,value in campaign %} 5 | {{ name }}: {{ value }}
6 | {% endfor %} 7 |
8 | {% endif %} --------------------------------------------------------------------------------