PDF rausgenommen
This commit is contained in:
@ -0,0 +1,33 @@
|
||||
<?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\Widgets;
|
||||
|
||||
use Piwik\Piwik;
|
||||
use Piwik\Widget\WidgetConfig;
|
||||
|
||||
class GetVisitorProfilePopup extends \Piwik\Widget\Widget
|
||||
{
|
||||
|
||||
public static function configure(WidgetConfig $config)
|
||||
{
|
||||
$config->setCategoryId('General_Visitors');
|
||||
$config->setName('Live_VisitorProfile');
|
||||
$config->setOrder(25);
|
||||
|
||||
if (Piwik::isUserIsAnonymous()) {
|
||||
$config->disable();
|
||||
}
|
||||
}
|
||||
|
||||
public function render()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
23
msd2/tracking/piwik/plugins/Live/Widgets/Widget.php
Normal file
23
msd2/tracking/piwik/plugins/Live/Widgets/Widget.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?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\Widgets;
|
||||
|
||||
use Piwik\Widget\WidgetConfig;
|
||||
|
||||
class Widget extends \Piwik\Widget\Widget
|
||||
{
|
||||
public static function configure(WidgetConfig $config)
|
||||
{
|
||||
$config->setCategoryId('General_Visitors');
|
||||
$config->setSubcategoryId('General_RealTime');
|
||||
$config->setName('Live_VisitorsInRealTime');
|
||||
$config->setIsWide();
|
||||
$config->setOrder(20);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user