| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace Meramo\mrm_be\Hooks\PageLayoutView;
- /*
- * 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!
- */
- use \TYPO3\CMS\Core\Utility\GeneralUtility;
- use \TYPO3\CMS\Core\Service\FlexFormService;
- use \TYPO3\CMS\Backend\View\PageLayoutViewDrawItemHookInterface;
- use \TYPO3\CMS\Backend\View\PageLayoutView;
- /**
- * Contains a preview rendering for the page module of CType="mrm_be_cm_introtext"
- */
- class MrmBeCmAnimationPreviewRenderer implements PageLayoutViewDrawItemHookInterface
- {
- /**
- * Preprocesses the preview rendering of a content element of type "My new content element"
- *
- * @param \TYPO3\CMS\Backend\View\PageLayoutView $parentObject Calling parent object
- * @param bool $drawItem Whether to draw the item using the default functionality
- * @param string $headerContent Header content
- * @param string $itemContent Item content
- * @param array $row Record row of tt_content
- *
- * @return void
- */
- public function preProcess(
- PageLayoutView &$parentObject,
- &$drawItem,
- &$headerContent,
- &$itemContent,
- array &$row
- )
- {}
- }
|