File: D:/web/matomo.circ/plugins/TagManager/Template/Variable/PreConfigured/PageUrlVariable.php
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\TagManager\Template\Variable\PreConfigured;
use Piwik\Plugins\TagManager\Context\WebContext;
class PageUrlVariable extends BasePreConfiguredVariable
{
public function getCategory()
{
return self::CATEGORY_PAGE_VARIABLES;
}
public function loadTemplate($context, $entity, $skipTemplate = false)
{
switch ($context) {
case WebContext::ID:
return $this->makeReturnTemplateMethod('parameters.window.location.href', $skipTemplate);
}
}
}