| Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Messaging/Renderer/ |
| Current File : /var/www/surf/TYPO3/vendor/typo3/cms-core/Classes/Messaging/Renderer/BootstrapRenderer.php |
<?php
declare(strict_types=1);
/*
* 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\Core\Messaging\Renderer;
use TYPO3\CMS\Core\Imaging\Icon;
use TYPO3\CMS\Core\Imaging\IconFactory;
use TYPO3\CMS\Core\Messaging\FlashMessage;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* A class representing a bootstrap flash messages.
* This class renders flash messages as markup, based on the
* bootstrap HTML/CSS framework. It is used in backend context.
* The created output contains all classes which are required for
* the TYPO3 backend. Any kind of message contains also a nice icon.
*/
class BootstrapRenderer implements FlashMessageRendererInterface
{
protected IconFactory $iconFactory;
public function __construct(IconFactory $iconFactory = null)
{
$this->iconFactory = $iconFactory ?? GeneralUtility::makeInstance(IconFactory::class);
}
/**
* Render method
*
* @param FlashMessage[] $flashMessages
* @return string Representation of the flash message
*/
public function render(array $flashMessages): string
{
return $this->getMessageAsMarkup($flashMessages);
}
/**
* Gets the message severity class name
*
*
* @return string The message severity class name
*/
protected function getClass(FlashMessage $flashMessage): string
{
return 'alert-' . $flashMessage->getSeverity()->getCssClass();
}
/**
* Gets the message severity icon name
*
*
* @return string The message severity icon name
*/
protected function getIconName(FlashMessage $flashMessage): string
{
return $flashMessage->getSeverity()->getIconIdentifier();
}
/**
* Gets the message rendered as clean and secure markup
*
* @param FlashMessage[] $flashMessages
*/
protected function getMessageAsMarkup(array $flashMessages): string
{
$markup = [];
$markup[] = '<div class="typo3-messages">';
foreach ($flashMessages as $flashMessage) {
$messageTitle = $flashMessage->getTitle();
$markup[] = '<div class="alert ' . htmlspecialchars($this->getClass($flashMessage)) . '">';
$markup[] = ' <div class="media">';
$markup[] = ' <div class="media-left">';
$markup[] = ' <span class="icon-emphasized">';
$markup[] = $this->iconFactory->getIcon($this->getIconName($flashMessage), Icon::SIZE_SMALL)->render();
$markup[] = ' </span>';
$markup[] = ' </div>';
$markup[] = ' <div class="media-body">';
if ($messageTitle !== '') {
$markup[] = ' <h4 class="alert-title">' . htmlspecialchars($messageTitle) . '</h4>';
}
$markup[] = ' <p class="alert-message">' . htmlspecialchars($flashMessage->getMessage()) . '</p>';
$markup[] = ' </div>';
$markup[] = ' </div>';
$markup[] = '</div>';
}
$markup[] = '</div>';
return implode('', $markup);
}
}