Files
cms-core/Documentation/Changelog/10.0/Feature-88791-IntroducePreviewAspectInContext.rst
T

30 lines
1.0 KiB
ReStructuredText

.. include:: /Includes.rst.txt
.. _feature-88791:
====================================================
Feature: #88791 - Introduce PreviewAspect in Context
====================================================
See :issue:`88791`
Description
===========
A PreviewAspect for handling the preview flag has been introduced. This aspect may be used to indicate that the
frontend is in preview mode (for example in case a workspace is previewed or hidden pages or records should be shown).
Impact
======
The Context API has a new Aspect called "frontend.preview". It can be used to determine whether the frontend is currently in preview mode.
.. code-block:: php
GeneralUtility::makeInstance(Context::class)->getPropertyFromAspect('frontend.preview', 'isPreview');
This Aspect replaces the now deprecated property :php:`TypoScriptFrontendController->fePreview`. Accessing this property
triggers a PHP :php:`E_USER_DEPRECATED` error, and fetches the information from the new Context Aspect instead.
.. index:: Frontend, PHP-API, ext:core