Initial commit - Typo3 11.5.41

This commit is contained in:
Matteo Gallo
2026-07-03 17:53:31 +02:00
commit 5ca4743197
6811 changed files with 568848 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<f:layout name="Default"/>
<f:section name="main">
<div class="tt_address_list">
<f:render section="displayMode_{settings.displayMode}" arguments="{_all}" />
</div>
</f:section>
<f:section name="displayMode_list">
<!--TYPO3SEARCH_end-->
<f:if condition="{settings.hidePagination}">
<f:then>
<f:for each="{addresses}" as="address" iteration="iterator">
<f:render partial="ListItem" arguments="{_all}"/>
</f:for>
</f:then>
<f:else>
<f:if condition="{settings.paginate.insertAbove}">
<f:render partial="Pagination" arguments="{pagination: pagination.pagination, pages: pagination.pages, paginator: pagination.paginator}" />
</f:if>
<f:for each="{pagination.paginator.paginatedItems}" as="address" iteration="iterator">
<f:render partial="ListItem" arguments="{_all}"/>
</f:for>
<f:if condition="{settings.paginate.insertBelow}">
<f:render partial="Pagination" arguments="{pagination: pagination.pagination, pages: pagination.pages, paginator: pagination.paginator}" />
</f:if>
</f:else>
</f:if>
<!--TYPO3SEARCH_begin-->
</f:section>
<f:section name="displayMode_single">
<f:for each="{addresses}" as="address">
<f:render partial="Full" arguments="{_all}"/>
</f:for>
</f:section>
<f:section name="displayMode_map">
<f:render partial="Maps" section="{settings.map.rendering}" arguments="{_all}"/>
</f:section>

View File

@@ -0,0 +1,6 @@
<f:layout name="Default"/>
<f:section name="main">
<f:render partial="MetaTags" arguments="{_all}" />
<f:render partial="Full" arguments="{_all}"/>
</f:section>

View File

@@ -0,0 +1,95 @@
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
data-namespace-typo3-fluid="true">
<f:variable name="flex">{pi_flexform_transformed.settings}</f:variable>
<table class="table table-condensed table-triped">
<thead>
<tr>
<td colspan="2"><strong>{f:translate(key:'LLL:EXT:tt_address/Resources/Private/Language/db/locallang.xlf:extbase_title')}</strong>
</td>
</tr>
</thead>
<tbody>
<f:if condition="{flex.displayMode}">
<tr>
<th>{f:translate(key:'{_computed.lll}displayMode')}</th>
<td>
<f:switch expression="{flex.displayMode}">
<f:case value="list">{f:translate(key:'{_computed.lll}displayMode.listView')}</f:case>
<f:case value="single">{f:translate(key:'{_computed.lll}displayMode.singleView')}
</f:case>
<f:case value="map">{f:translate(key:'{_computed.lll}displayMode.map')}</f:case>
<f:defaultCase>{flex.displayMode}</f:defaultCase>
</f:switch>
</td>
</tr>
</f:if>
<f:if condition="{_computed.singleRecords}">
<tr>
<th>{f:translate(key:'{_computed.lll}single_records')}</th>
<td>
<f:for each="{_computed.singleRecords}" as="row">
<f:render section="rowElement" arguments="{table:'tt_address', row:row}"/>
</f:for>
</td>
</tr>
</f:if>
<f:if condition="{_computed.pages}">
<tr>
<th>{f:translate(key:'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.startingpoint')}
</th>
<td>
<f:for each="{_computed.pages}" as="row">
<f:render section="rowElement" arguments="{table:'pages', row:row}"/>
</f:for>
<f:if condition="{flex.recursive}">
{f:translate(key:'LLL:EXT:core/Resources/Private/Language/locallang_general.xlf:LGL.recursive')}:
{f:translate(key:'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:recursive.I.{flex.recursive}')}
</f:if>
</td>
</tr>
</f:if>
<f:if condition="{_computed.singlePid}">
<tr>
<th>{f:translate(key:'{_computed.lll}singlePid')}</th>
<td>
<f:render section="rowElement" arguments="{table:'pages', row:_computed.singlePid}"/>
</td>
</tr>
</f:if>
<f:if condition="{_computed.groups}">
<tr>
<th>{f:translate(key:'{_computed.lll}group_selection')}</th>
<td>
<f:for each="{_computed.groups}" as="row">
<f:render section="rowElement" arguments="{table:'sys_category', row:row}"/>
</f:for>
<hr style="margin:5px"/>
{f:translate(key:'{_computed.lll}combination')}:
<f:if condition="{flex.groupsCombination}">
<f:then>
{f:translate(key:'{_computed.lll}combination.or')}
</f:then>
<f:else>
{f:translate(key:'{_computed.lll}combination.and')}
</f:else>
</f:if>
<br>
<f:if condition="{flex.includeSubcategories}">
<core:icon identifier="actions-check" size="small"/>
{f:translate(key:'{_computed.lll}includeSubcategories')}
</f:if>
</td>
</tr>
</f:if>
</tbody>
</table>
<f:section name="rowElement">
<a href="#" class="t3js-contextmenutrigger" data-table="{table}" data-uid="{row.uid}" title="id={row.uid}">
<core:iconForRecord row="{row}" table="{table}"/>
</a>
{row._computed.title}<br>
</f:section>
</html>