File size: 687 Bytes
78185c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | <?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\Columns;
use Piwik\Columns\Dimension;
/**
* Neutral "URL" dimension used by the Broken Content report which mixes page and document URLs.
* Unlike PageUrl (TYPE_PAGE_URL only) and DocumentUrl (TYPE_DOWNLOAD only), this dimension
* carries no action-type filter so the column header fits a mixed page + document URL list.
*/
class ContentUrl extends Dimension
{
protected $nameSingular = 'BotTracking_ContentUrl';
protected $type = self::TYPE_URL;
}
|