PDF rausgenommen
This commit is contained in:
@ -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;
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
@ -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');
|
||||
}
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
@ -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;
|
||||
|
||||
}
|
Reference in New Issue
Block a user