Your IP : 216.73.216.43


Current Path : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Resources/Private/Templates/PageLayout/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/typo3/cms-backend/Resources/Private/Templates/PageLayout/PageModule.html

<html
    xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
    data-namespace-typo3-fluid="true"
>

<f:layout name="Module" />

<f:section name="Before">
    <f:be.pageRenderer
        includeJavaScriptModules="{
            0: '@typo3/backend/clear-cache.js',
            1: '@typo3/backend/new-content-element-wizard-button.js',
            2: '@typo3/backend/context-menu.js',
            3: '@typo3/backend/localization.js',
            4: '@typo3/backend/layout-module/drag-drop.js',
            5: '@typo3/backend/modal.js',
            6: '@typo3/backend/element/editable-page-title.js'
        }"
        addJsInlineLabels="{
            'editablePageTitle.input.field.label': 'LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:editPageTitle.input.field.label',
            'editablePageTitle.button.edit.label': 'LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:editPageTitle',
            'editableGroupName.button.save.label': 'LLL:EXT:core/Resources/Private/Language/locallang_common.xlf:save',
            'editableGroupName.button.cancel.label': 'LLL:EXT:core/Resources/Private/Language/locallang_common.xlf:cancel'
        }"
    />
    <f:variable name="immediateActionArgs" value="{0: 'web', 1: pageId, 2: 1}" />
    <typo3-immediate-action
        action="TYPO3.Backend.Storage.ModuleStateStorage.updateWithCurrentMount"
        args="{immediateActionArgs -> f:format.json() -> f:format.htmlspecialchars()}"
    ></typo3-immediate-action>
</f:section>

<f:section name="Content">

    <typo3-backend-editable-page-title
        pageTitle="{localizedPageTitle}"
        pageId="{pageId}"
        localizedPageId="{localizedPageId}"
        {isPageEditable ? 'editable' : ''}
    >
        {localizedPageTitle}
    </typo3-backend-editable-page-title>

    <f:for each="{infoBoxes}" as="infoBox">
        <f:be.infobox state="{infoBox.state}">
            <f:format.raw>{infoBox.message}</f:format.raw>
        </f:be.infobox>
    </f:for>

    <f:format.raw>{eventContentHtmlTop}</f:format.raw>

    <form action="{f:be.uri(route:'web_layout', parameters:'{id: pageId}')}" id="PageLayoutController" method="post">
        <f:format.raw>{mainContentHtml}</f:format.raw>
    </form>

    <f:if condition="{hiddenElementsShowToggle}">
        <div class="form-check form-switch">
            <input
                type="checkbox"
                id="checkShowHidden"
                class="form-check-input"
                name="showHidden"
                value="1"
                {f:if(condition:'{hiddenElementsState} == 1', then:'checked="checked"')}
            />
            <label class="form-check-label" for="checkShowHidden">
                <f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:hiddenCE" /> ({hiddenElementsCount})
            </label>
        </div>
    </f:if>

    <f:format.raw>{eventContentHtmlBottom}</f:format.raw>

</f:section>

</html>