Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
services
t3o sites
extensions.typo3.org
extensions.typo3.org
Commits
378ba853
Commit
378ba853
authored
Nov 29, 2021
by
Thomas Löffler
Browse files
[BUGFIX] Correct check for verification and add title tag in link
parent
16b58970
Pipeline
#20152
passed with stages
in 6 minutes and 19 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
extensions/ter_fe2/Classes/Domain/Model/Version.php
View file @
378ba853
...
...
@@ -902,7 +902,7 @@ class Version extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
$minimumVersion
=
\
TYPO3\CMS\Core\Utility\VersionNumberUtility
::
convertVersionNumberToInteger
(
$majorVersion
.
'.0'
);
$maximumVersion
=
\
TYPO3\CMS\Core\Utility\VersionNumberUtility
::
convertVersionNumberToInteger
(
$majorVersion
.
'.999'
);
if
(
$typo3Dependency
->
getMinimumVersion
()
<
$maximumVersion
&&
$typo3Dependency
->
getMaximumVersion
()
>
$minimumVersion
)
{
if
(
$typo3Dependency
->
getMinimumVersion
()
<
=
$maximumVersion
&&
$typo3Dependency
->
getMaximumVersion
()
>
=
$minimumVersion
)
{
return
true
;
}
}
...
...
extensions/ter_fe2/Resources/Private/Partials/Verified/Badge.html
View file @
378ba853
<html
xmlns:f=
"http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid=
"true"
>
<a
target=
"_blank"
href=
"https://typo3.com/typo3-cms/extensions-integrations/what-are-verified-extensions-integrations"
>
<img
height=
"{height}"
src=
"/typo3conf/ext/ter_fe2/Resources/Public/Icons/icon_verified_extension.svg"
title=
"Verified Extension"
alt=
"verified"
style=
"vertical-align: text-top;"
/>
<f:if
condition=
"{withText}"
>
<span
class=
"verified"
>
verified
</span>
</f:if>
</a>
<f:spaceless>
<a
target=
"_blank"
href=
"https://typo3.com/typo3-cms/extensions-integrations/what-are-verified-extensions-integrations"
title=
"Verified Extension"
>
<img
height=
"{height}"
src=
"/typo3conf/ext/ter_fe2/Resources/Public/Icons/icon_verified_extension.svg"
alt=
"verified logo"
style=
"vertical-align: text-top;"
/>
<f:if
condition=
"{withText}"
>
<span
class=
"verified"
>
verified
</span>
</f:if>
</a>
</f:spaceless>
</html>
extensions/ter_layout/Resources/Private/Partials/Solr/Result/Document.html
View file @
378ba853
...
...
@@ -41,10 +41,12 @@
{document.extensionKey_stringS} /
<span
class=
"ter-ext-state ter-ext-state-{document.extensionState_stringS}"
>
{document.extensionState_stringS}
</span>
<f:if
condition=
"{document.verified_boolS}"
>
/
<a
target=
"_blank"
href=
"https://typo3.com/typo3-cms/extensions-integrations/what-are-verified-extensions-integrations"
>
<img
height=
"28"
src=
"/typo3conf/ext/ter_fe2/Resources/Public/Icons/icon_verified_extension.svg"
title=
"Verified Extension"
alt=
"verified"
style=
"vertical-align: text-top;"
/>
<span
class=
"verified"
>
verified
</span>
</a>
<f:spaceless>
<a
target=
"_blank"
href=
"https://typo3.com/typo3-cms/extensions-integrations/what-are-verified-extensions-integrations"
title=
"Verified Extension"
>
<img
height=
"28"
src=
"/typo3conf/ext/ter_fe2/Resources/Public/Icons/icon_verified_extension.svg"
alt=
"verified logo"
style=
"vertical-align: text-top;"
/>
<span
class=
"verified"
>
verified
</span>
</a>
</f:spaceless>
</f:if>
</h4>
<p>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment