| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/LinkHandler/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Classes/LinkHandler/UrlLinkHandler.php |
<?php
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Backend\LinkHandler;
use Psr\Http\Message\ServerRequestInterface;
/**
* Link to an arbitrary external URL.
*
* @internal This class is a specific LinkHandler implementation and is not part of the TYPO3's Core API.
*/
class UrlLinkHandler extends AbstractLinkHandler implements LinkHandlerInterface
{
/**
* Parts of the current link
*
* @var array
*/
protected $linkParts = [];
/**
* We don't support updates since there is no difference to simply set the link again.
*
* @var bool
*/
protected $updateSupported = false;
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
// remove unsupported link attribute
unset($this->linkAttributes[array_search('params', $this->linkAttributes, true)]);
}
/**
* Checks if this is the handler for the given link
*
* The handler may store this information locally for later usage.
*
* @param array $linkParts Link parts as returned from TypoLinkCodecService
*
* @return bool
*/
public function canHandleLink(array $linkParts)
{
if (!isset($linkParts['url']['url'])) {
return false;
}
$linkParts['url'] = $linkParts['url']['url'];
$this->linkParts = $linkParts;
return true;
}
/**
* Format the current link for HTML output
*
* @return string
*/
public function formatCurrentUrl()
{
return $this->linkParts['url'];
}
/**
* Render the link handler
*/
public function render(ServerRequestInterface $request)
{
$this->pageRenderer->loadJavaScriptModule('@typo3/backend/url-link-handler.js');
$this->view->assign('url', !empty($this->linkParts) ? $this->linkParts['url'] : '');
return $this->view->render('LinkBrowser/Url');
}
/**
* @return string[] Array of body-tag attributes
*/
public function getBodyTagAttributes()
{
return [];
}
}