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\Goals\Categories;
|
||||
|
||||
use Piwik\Category\Subcategory;
|
||||
|
||||
class AddANewGoalSubcategory extends Subcategory
|
||||
{
|
||||
protected $categoryId = 'Goals_Goals';
|
||||
protected $id = 'Goals_AddNewGoal';
|
||||
protected $order = 9999;
|
||||
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
<?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\Goals\Categories;
|
||||
|
||||
use Piwik\Category\Category;
|
||||
|
||||
class GoalsCategory extends Category
|
||||
{
|
||||
protected $id = 'Goals_Goals';
|
||||
protected $order = 25;
|
||||
protected $icon = 'icon-reporting-goal';
|
||||
}
|
@ -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\Goals\Categories;
|
||||
|
||||
use Piwik\Category\Subcategory;
|
||||
|
||||
class GoalsOverviewSubcategory extends Subcategory
|
||||
{
|
||||
protected $categoryId = 'Goals_Goals';
|
||||
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\Goals\Categories;
|
||||
|
||||
use Piwik\Category\Subcategory;
|
||||
|
||||
class ManageGoalsSubcategory extends Subcategory
|
||||
{
|
||||
protected $categoryId = 'Goals_Goals';
|
||||
protected $id = 'Goals_ManageGoals';
|
||||
protected $order = 9999;
|
||||
|
||||
}
|
Reference in New Issue
Block a user