ds-site/Classes/Hooks/Backend/PageLayoutHeader.php
Daniel Siepmann 19ddacb246 Use pageinfo and remove extension scanner false positive
As only pageinfo is used, only this is stored for now.
Also the single line accessing the property is marked to be ignored by
extension scanner.
2020-04-01 11:45:27 +02:00

100 lines
3.3 KiB
PHP

<?php
namespace DanielSiepmann\DsSite\Hooks\Backend;
/*
* Copyright (C) 2019 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
use TYPO3\CMS\Backend\Controller\PageLayoutController;
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Fluid\View\StandaloneView;
use TYPO3\CMS\Frontend\Resource\FileCollector;
class PageLayoutHeader
{
/**
* @var array
*/
private $pageinfo;
public function render(
array $params,
PageLayoutController $pageLayoutController
): string {
// @extensionScannerIgnoreLine At least in v10 this is a false positive
$this->pageinfo = $pageLayoutController->pageinfo;
// TODO: Check whether two levels up is uid 2, which holds all blog posts
// To prevent rendering on non blog posts
// Maybe we have rootline ?
$view = $this->getView();
$view->assignMultiple([
'record' => $this->pageinfo,
'metaInfo' => [
[
'label' => 'meta-description',
'value' => $this->pageinfo['description'],
'field' => 'description',
'type' => 'string',
],
[
'label' => 'introduction',
'value' => $this->pageinfo['abstract'],
'field' => 'abstract',
'type' => 'string',
],
[
'label' => 'published',
'value' => $this->pageinfo['lastUpdated'],
'field' => 'lastUpdated',
'type' => 'date',
],
[
'label' => 'updated',
'value' => $this->pageinfo['SYS_LASTCHANGED'],
'type' => 'date',
],
[
'label' => 'media',
'value' => $this->resolvePageMedia(),
'field' => 'media',
'type' => 'files',
],
],
]);
$view->setTemplatePathAndFilename('EXT:ds_site/Resources/Private/Templates/Backend/Page/MetaInfo.html');
return $view->render();
}
private function getView(): StandaloneView
{
return GeneralUtility::makeInstance(StandaloneView::class);
}
private function resolvePageMedia(): array
{
$page = ['uid' => $this->pageinfo['uid']];
$files = new FileCollector();
$files->addFilesFromRelation('pages', 'media', $page);
return $files->getFiles();
}
}