PDF rausgenommen

This commit is contained in:
aschwarz
2023-01-23 11:03:31 +01:00
parent 82d562a322
commit a6523903eb
28078 changed files with 4247552 additions and 2 deletions

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class AllReferrersSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_WidgetGetAll';
protected $order = 5;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class CampaignUrlBuilderSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_URLCampaignBuilder';
protected $order = 21;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class CampaignsSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_Campaigns';
protected $order = 20;
}

View File

@ -0,0 +1,24 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Category;
use Piwik\Piwik;
class ReferrersCategory extends Category
{
protected $id = 'Referrers_Referrers';
protected $order = 15;
protected $icon = 'icon-reporting-referer';
public function getDisplayName()
{
return Piwik::translate('Referrers_Acquisition');
}
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class ReferrersOverviewSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'General_Overview';
protected $order = 2;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class SearchEnginesSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_SubmenuSearchEngines';
protected $order = 10;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class SocialsSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_Socials';
protected $order = 16;
}

View File

@ -0,0 +1,19 @@
<?php
/**
* Piwik - free/libre analytics platform
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\Referrers\Categories;
use Piwik\Category\Subcategory;
class WebsitesSubcategory extends Subcategory
{
protected $categoryId = 'Referrers_Referrers';
protected $id = 'Referrers_SubmenuWebsitesOnly';
protected $order = 15;
}