matomo / plugins /BotTracking /Widgets /NoRecentRequestsRealtime.php
Leon4gr45's picture
Upload source files chunk 18
78185c4 verified
Raw
History Blame Contribute Delete
787 Bytes
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
declare(strict_types=1);
namespace Piwik\Plugins\BotTracking\Widgets;
use Piwik\Widget\Widget;
use Piwik\Widget\WidgetConfig;
/**
* Places the "no recent AI bot requests" message on the Real-time page too, so it matches the
* Overview when nothing has been tracked recently. A distinct action gives it its own widget id.
*/
class NoRecentRequestsRealtime extends Widget
{
public static function configure(WidgetConfig $config)
{
NoRecentRequests::configureMessageWidget(
$config,
'BotTracking_AIChatbotsRealtime',
'noRecentRequestsMessageRealtime'
);
}
}