TYPO3 v15 dev-main snapshot ()
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
<html
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="LinkBrowser" />
|
||||
|
||||
<f:section name="Content">
|
||||
<form action="" id="lmailform">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="lemail" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:emailAddress" />
|
||||
</label>
|
||||
<input
|
||||
id="lemail"
|
||||
type="email"
|
||||
name="lemail"
|
||||
class="form-control"
|
||||
value="{email}"
|
||||
required />
|
||||
</div>
|
||||
<f:if condition="{allowedLinkAttributes.subject}">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="emailSubject" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:email.subject" />
|
||||
</label>
|
||||
<input
|
||||
id="emailSubject"
|
||||
name="emailSubject"
|
||||
class="form-control"
|
||||
value="{subject}"
|
||||
data-mailto-part="subject"/>
|
||||
</div>
|
||||
</f:if>
|
||||
<f:if condition="{allowedLinkAttributes.cc}">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="emailCc" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:email.cc" />
|
||||
</label>
|
||||
<input
|
||||
id="emailCc"
|
||||
name="emailCc"
|
||||
class="form-control"
|
||||
value="{cc}"
|
||||
data-mailto-part="cc"/>
|
||||
</div>
|
||||
</f:if>
|
||||
<f:if condition="{allowedLinkAttributes.bcc}">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="emailBcc" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:email.bcc" />
|
||||
</label>
|
||||
<input
|
||||
id="emailBcc"
|
||||
name="emailBcc"
|
||||
class="form-control"
|
||||
value="{bcc}"
|
||||
data-mailto-part="bcc"/>
|
||||
</div>
|
||||
</f:if>
|
||||
<f:if condition="{allowedLinkAttributes.body}">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="emailBody" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:email.body" />
|
||||
</label>
|
||||
<textarea
|
||||
id="emailBody"
|
||||
name="emailBody"
|
||||
rows="10"
|
||||
cols="50"
|
||||
size="20"
|
||||
class="form-control"
|
||||
data-mailto-part="body">{body}</textarea>
|
||||
</div>
|
||||
</f:if>
|
||||
<div class="element-browser-form-group">
|
||||
<input class="btn btn-primary" type="submit" value="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:setLink')}" />
|
||||
</div>
|
||||
</form>
|
||||
</f:section>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,44 @@
|
||||
<html
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="LinkBrowser" />
|
||||
|
||||
<f:section name="Navigation">
|
||||
<typo3-backend-component-page-browser
|
||||
tree-actions="{treeActions -> f:format.json()}"
|
||||
active-page="{expandedPage}"
|
||||
>
|
||||
</typo3-backend-component-page-browser>
|
||||
</f:section>
|
||||
|
||||
<f:section name="Content">
|
||||
<f:if condition="{expandActivePage}">
|
||||
<f:if condition="{activePageLink}">
|
||||
<f:then>
|
||||
<a href="{activePageLink}" class="t3js-pageLink btn btn-default">
|
||||
<f:format.raw>
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:linkTo" arguments="{0: '{activePageIcon} {activePageTitle}'}">{activePageIcon} {activePageTitle}</f:translate>
|
||||
</f:format.raw>
|
||||
</a>
|
||||
</f:then>
|
||||
<f:else>
|
||||
<div>{activePageIcon -> f:format.raw()} {activePageTitle -> f:format.raw()}</div>
|
||||
</f:else>
|
||||
</f:if>
|
||||
|
||||
<f:if condition="{contentElements}">
|
||||
<h4 class="mt-4 mb-3"><f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:contentElements" /></h4>
|
||||
<div class="list-group">
|
||||
<f:for each="{contentElements}" as="content">
|
||||
<a href="{content.url}" class="t3js-pageLink list-group-item list-group-item-action {f:if(condition: content.isSelected, then: ' active')}">
|
||||
{content.icon -> f:format.raw()} {content.title -> f:format.raw()}
|
||||
</a>
|
||||
</f:for>
|
||||
</div>
|
||||
</f:if>
|
||||
</f:if>
|
||||
</f:section>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,21 @@
|
||||
<html
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="LinkBrowser" />
|
||||
|
||||
<f:section name="Navigation"><f:if condition="{treeEnabled}">
|
||||
<typo3-backend-component-page-browser
|
||||
tree-actions="{treeActions -> f:format.json()}"
|
||||
alternative-entry-points="{pageTreeMountPoints -> f:format.json()}"
|
||||
active-page="{expandedPage}"
|
||||
>
|
||||
</typo3-backend-component-page-browser>
|
||||
</f:if></f:section>
|
||||
|
||||
<f:section name="Content">
|
||||
{recordList -> f:format.raw()}
|
||||
</f:section>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,29 @@
|
||||
<html
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="LinkBrowser" />
|
||||
|
||||
<f:section name="Content">
|
||||
<form class="form" action="" id="ltelephoneform">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="ltelephone" class="form-label">
|
||||
<f:translate key="LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:telephoneNumber" />
|
||||
</label>
|
||||
<div class="input-group">
|
||||
<input
|
||||
id="ltelephone"
|
||||
type="tel"
|
||||
name="ltelephone"
|
||||
size="20"
|
||||
class="form-control"
|
||||
value="{telephone}"
|
||||
required />
|
||||
<input class="btn btn-primary" type="submit" value="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:setLink')}" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</f:section>
|
||||
|
||||
</html>
|
||||
@@ -0,0 +1,30 @@
|
||||
<html
|
||||
xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
|
||||
data-namespace-typo3-fluid="true"
|
||||
>
|
||||
|
||||
<f:layout name="LinkBrowser" />
|
||||
|
||||
<f:section name="Content">
|
||||
<form class="form" action="" id="lurlform">
|
||||
<div class="element-browser-form-group">
|
||||
<label for="lurl" class="form-label">
|
||||
URL
|
||||
</label>
|
||||
<div class="input-group">
|
||||
<input
|
||||
id="lurl"
|
||||
type="text"
|
||||
name="lurl"
|
||||
size="30"
|
||||
class="form-control"
|
||||
value="{url}"
|
||||
placeholder="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:urlPlaceholder')}"
|
||||
required />
|
||||
<input class="btn btn-primary" type="submit" value="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_browse_links.xlf:setLink')}" />
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</f:section>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user