PDF rausgenommen
This commit is contained in:
17
msd2/tracking/piwik/plugins/Live/Categories/LiveCategory.php
Normal file
17
msd2/tracking/piwik/plugins/Live/Categories/LiveCategory.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?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\Live\Categories;
|
||||
|
||||
use Piwik\Category\Category;
|
||||
|
||||
class LiveCategory extends Category
|
||||
{
|
||||
protected $id = 'Live!';
|
||||
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\Live\Categories;
|
||||
|
||||
use Piwik\Category\Subcategory;
|
||||
|
||||
class RealTimeVisitorsSubcategory extends Subcategory
|
||||
{
|
||||
protected $categoryId = 'General_Visitors';
|
||||
protected $id = 'General_RealTime';
|
||||
protected $order = 7;
|
||||
|
||||
}
|
@ -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\Live\Categories;
|
||||
|
||||
use Piwik\Category\Subcategory;
|
||||
|
||||
class VisitorLogSubcategory extends Subcategory
|
||||
{
|
||||
protected $categoryId = 'General_Visitors';
|
||||
protected $id = 'Live_VisitorLog';
|
||||
protected $order = 5;
|
||||
|
||||
}
|
Reference in New Issue
Block a user