forked from TYPO3-extensions/extension_builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove legacy stuff related to not supported versions Releases: 6.2 Change-Id: Iab70beb2fd8e5068401990063dc19e6043e9b91e Reviewed-on: https://review.typo3.org/29528 Reviewed-by: Nico de Haen Tested-by: Nico de Haen
- Loading branch information
Showing
10 changed files
with
238 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 12 additions & 13 deletions
25
...tures/TestExtensions/test_extension_v3/Resources/Private/Backend/Partials/FormErrors.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<f:form.errors> | ||
<div class="error"> | ||
{error.message} | ||
<f:if condition="{error.propertyName}"> | ||
<p> | ||
<strong>{error.propertyName}</strong>: | ||
<f:for each="{error.errors}" as="errorDetail"> | ||
{errorDetail.message} | ||
</f:for> | ||
</p> | ||
</f:if> | ||
</div> | ||
</f:form.errors> | ||
<f:form.validationResults for="{object}"> | ||
<f:if condition="{validationResults.flattenedErrors}"> | ||
<ul> | ||
<f:for each="{validationResults.flattenedErrors}" key="propertyPath" as="errors"> | ||
<li> | ||
{propertyPath}: <ul> | ||
<f:for each="{errors}" as="error"><li>{error}</li></f:for> | ||
</ul> | ||
</li> | ||
</f:for></ul> | ||
</f:if> | ||
</f:form.validationResults> |
25 changes: 12 additions & 13 deletions
25
Tests/Fixtures/TestExtensions/test_extension_v3/Resources/Private/Partials/FormErrors.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
<f:form.errors> | ||
<div class="error"> | ||
{error.message} | ||
<f:if condition="{error.propertyName}"> | ||
<p> | ||
<strong>{error.propertyName}</strong>: | ||
<f:for each="{error.errors}" as="errorDetail"> | ||
{errorDetail.message} | ||
</f:for> | ||
</p> | ||
</f:if> | ||
</div> | ||
</f:form.errors> | ||
<f:form.validationResults for="{object}"> | ||
<f:if condition="{validationResults.flattenedErrors}"> | ||
<ul> | ||
<f:for each="{validationResults.flattenedErrors}" key="propertyPath" as="errors"> | ||
<li> | ||
{propertyPath}: <ul> | ||
<f:for each="{errors}" as="error"><li>{error}</li></f:for> | ||
</ul> | ||
</li> | ||
</f:for></ul> | ||
</f:if> | ||
</f:form.validationResults> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.