84 lines
2.3 KiB
PHP
84 lines
2.3 KiB
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\Beuser\ViewHelpers;
|
|
|
|
use TYPO3\CMS\Core\Imaging\IconFactory;
|
|
use TYPO3\CMS\Core\Imaging\IconSize;
|
|
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
|
|
|
|
/**
|
|
* ViewHelper to display a sprite icon for a record (object).
|
|
*
|
|
* ```
|
|
* <beuser:spriteIconForRecord table="be_groups" object="{backendUserGroup}" />
|
|
* ```
|
|
*
|
|
* @internal
|
|
*/
|
|
final class SpriteIconForRecordViewHelper extends AbstractViewHelper
|
|
{
|
|
/**
|
|
* As this ViewHelper renders HTML, the output must not be escaped.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $escapeOutput = false;
|
|
|
|
public function __construct(
|
|
private readonly IconFactory $iconFactory
|
|
) {}
|
|
|
|
public function initializeArguments(): void
|
|
{
|
|
parent::initializeArguments();
|
|
$this->registerArgument('table', 'string', '', true);
|
|
$this->registerArgument('object', 'object', '', true);
|
|
}
|
|
|
|
/**
|
|
* Displays spriteIcon for database table and object
|
|
*/
|
|
public function render(): string
|
|
{
|
|
$object = $this->arguments['object'];
|
|
$table = $this->arguments['table'];
|
|
|
|
if (!method_exists($object, 'getUid')) {
|
|
return '';
|
|
}
|
|
$row = [
|
|
'uid' => $object->getUid(),
|
|
'startTime' => false,
|
|
'endTime' => false,
|
|
];
|
|
if (method_exists($object, 'getIsDisabled')) {
|
|
$row['disable'] = $object->getIsDisabled();
|
|
}
|
|
if (method_exists($object, 'getHidden')) {
|
|
$row['hidden'] = $object->getHidden();
|
|
}
|
|
if (method_exists($object, 'getStartDateAndTime')) {
|
|
$row['startTime'] = $object->getStartDateAndTime();
|
|
}
|
|
if (method_exists($object, 'getEndDateAndTime')) {
|
|
$row['endTime'] = $object->getEndDateAndTime();
|
|
}
|
|
return $this->iconFactory->getIconForRecord($table, $row, IconSize::SMALL)->render();
|
|
}
|
|
}
|