Verbesserungsvorschlag: Abfrage für BE Template TL_MODE unter Contao 5.x
Produkt: Custom Elements Contao
Contao-Version: 5.x
Ich habe bisher bei einigen Templates folgende Infos in der Backendansicht ausgegeben, damit mir der Rest nicht angezeigt wird.
Mit Contao 5.x wird TL_MODE nicht mehr unterstützt.
<?php
if (TL_MODE === 'BE') {
echo $this->headline;
echo " / ";
echo $this->teasertext;
return;
}
?>
Wie schreibe ich jetzt die IF Abfrage ob ich im Backend bin ?
Vielen Dank schon mal
Markus
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
1 Posted by Markus Schindle... on 22 Dec, 2023 08:24 AM
Ich konnte es so lösen.
Gibt es da was zu verbessern ?
Support Staff 2 Posted by RockSolid Theme... on 22 Dec, 2023 12:05 PM
Vielen Dank für Ihre Frage.
Anstatt der If-Abfrage kann in der Konfiguration des Custom Elements über
beTemplate
ein eigenes Template für die Verwendung im Backend definiert werden. Weitere Informationen dazu finden Sie in der Dokumentation der Erweiterung: https://rocksolidthemes.com/de/contao/plugins/custom-content-elements/dokumentation#eigene-elemente3 Posted by Markus Schindle... on 22 Dec, 2023 02:48 PM
Danke für die Rückmeldung (Schulterblick) !
Die hatte ich bereist im Einsatz habe aber gar nicht mehr daran gedacht, das es darüber gelöst werden kann.