Add preview renderers for custom content elements

This commit is contained in:
Björn Fromme
2021-09-27 18:26:56 +02:00
parent beb9fbae04
commit 0262738c91
26 changed files with 596 additions and 141 deletions
@@ -1,137 +0,0 @@
<?php
namespace EP\EpTheme\Hook;
/***************************************************************
*
* Copyright notice
*
* (c) 2016 Björn Fromme <[email protected]>, dreipunktnull
*
* All rights reserved
*
* This script is part of the TYPO3 project. The TYPO3 project 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 3 of the License, or
* (at your option) any later version.
*
* The GNU General Public License can be found at
* http://www.gnu.org/copyleft/gpl.html.
*
* This script 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.
*
* This copyright notice MUST APPEAR in all copies of the script!
***************************************************************/
use TYPO3\CMS\Backend\Utility\BackendUtility;
use TYPO3\CMS\Backend\View\PageLayoutView as CorePageLayoutView;
use TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface;
class PageLayoutView implements PageLayoutViewDrawItemHookInterface
{
/**
* @param CorePageLayoutView $parentObject
* @param bool $drawItem
* @param string $headerContent
* @param string $itemContent
* @param array $row
*/
public function preProcess(CorePageLayoutView &$parentObject, &$drawItem, &$headerContent, &$itemContent, array &$row)
{
switch ($row['CType'])
{
case 'teaser_country':
if ((int) $row['tx_eptheme_context_country'] > 0) {
$drawItem = false;
$country = BackendUtility::getRecord('tx_epproducts_domain_model_country', $row['tx_eptheme_context_country']);
$itemContent = '<strong>Teaser Land</strong><br />' . $country['name'];
}
break;
case 'teaser_region':
if ((int) $row['tx_eptheme_context_region'] > 0) {
$drawItem = false;
$region = BackendUtility::getRecord('tx_epproducts_domain_model_region', $row['tx_eptheme_context_region']);
$itemContent = '<strong>Teaser Gebiet</strong><br />' . $region['name'];
}
break;
case 'teaser_city':
if ((int) $row['tx_eptheme_context_city'] > 0) {
$drawItem = false;
$city = BackendUtility::getRecord('tx_epproducts_domain_model_city', $row['tx_eptheme_context_city']);
$itemContent = '<strong>Teaser Ort</strong><br />' . $city['name'];
}
break;
case 'teaser_hotel':
if ((int) $row['tx_eptheme_context_hotel'] > 0) {
$drawItem = false;
$hotel = BackendUtility::getRecord('tx_epproducts_domain_model_hotel', $row['tx_eptheme_context_hotel']);
$itemContent = '<strong>Teaser Hotel</strong><br />' . $hotel['name'];
}
break;
case 'teaser_concept':
if ((int) $row['tx_eptheme_context_concept'] > 0) {
$drawItem = false;
$concept = BackendUtility::getRecord('tx_epproducts_domain_model_concept', $row['tx_eptheme_context_concept']);
$itemContent = '<strong>Teaser Konzept</strong><br />' . $concept['name'];
}
break;
case 'teaser_product':
if ((int) $row['tx_eptheme_context_product'] > 0) {
$drawItem = false;
$product = BackendUtility::getRecord('tx_epproducts_domain_model_product', $row['tx_eptheme_context_product']);
$itemContent = '<strong>Teaser Product</strong><br />' . $product['name'];
if ((int) $row['tx_eptheme_context_hotel'] > 0) {
$hotel = BackendUtility::getRecord('tx_epproducts_domain_model_hotel',
$row['tx_eptheme_context_hotel']);
$itemContent .= ', ' . $hotel['name'];
}
}
break;
case 'gmap':
if ((int) $row['tx_eptheme_context_region'] > 0) {
$drawItem = false;
$region = BackendUtility::getRecord('tx_epproducts_domain_model_region', $row['tx_eptheme_context_region']);
$itemContent = '<strong>Google Map</strong><br />' . $region['name'];
} elseif ((int) $row['tx_eptheme_context_hotel'] > 0) {
$drawItem = false;
$hotel = BackendUtility::getRecord('tx_epproducts_domain_model_hotel', $row['tx_eptheme_context_hotel']);
$itemContent = '<strong>Google Map</strong><br />' . $hotel['name'];
}
break;
case 'disturber':
$drawItem = false;
switch ($row['layout'])
{
case 1:
$size = 'groß';
break;
case 2:
$size = 'Event klein';
break;
case 3:
$size = 'Event groß';
break;
default:
$size = 'klein';
}
$itemContent = '<strong>Störer ' . $size . '</strong>';
break;
case 'disrupter':
$drawItem = false;
$disrupter = BackendUtility::getRecord('tx_eptheme_domain_model_disrupter', $row['tx_eptheme_disrupter']);
$itemContent = '<strong>Störer</strong><br />' . $disrupter['headline'];
break;
case 'lineup':
$drawItem = false;
$itemContent = '<strong>Lineup</strong><br />' . $row['tx_eptheme_lineup'] . ' Einträge';
break;
default:
}
}
}