-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature] Rewrite html generation #47
Comments
@discordier @baumannsven @zonky2 @SvenMeierhans @davidmaack @adziemba |
wenn wir die Templates austauschbar machen, ist das im Prinzip egal, ob table oder div - da du schon divs gemacht hast, kann das so bleiben... Die wichtigste Einstellung wird die Spaltenbreite sein - die sollte flexibel als px oder % einstellbar sein. Das sollte auch ohne eine CSS-Datei möglich sein, damit man wie in MM multitable das mit einer DCA-Datei abfrühstücken kann. |
@zonky2 Idee wäre, dass im eval vom Widget dann solch eine Einstellung noch vornehmen, und diese dann auf jeder Spalte setzten. |
Hauptsache wir sind nicht mehr an feste Pixel gebunden - in C4 macht das keinen Sinn mehr (bis auf die feste Breite der Icon-Spalte) |
Allgemein zu twig Templates. Injecte so wenig wie möglich aber so komfortabel wie möglich. $twig->render([
'headFoo' => $translator->trans('Foo'),
'headBar' => $translator->trans('Bar'),
'foo' => $this->foo,
'bar' => $this->bar,
]) {{ headFoo }}: {{ foo }}
{{ headBar }}: {{ bar }} Beispiel besser: $twig->render([
'widget' => $this
]) {% trans %}Foo{% endtrans %}: {{ widget.foo }}
{% trans %}Bar{% endtrans %}: {{ widget.bar }} Es ist geschickter, wenn das Template sich die Informationen pullen kann, denn nur es weiß was genau es braucht. Wenn z.B. ein Text nicht ausgegeben werden soll, macht es keinen Sinn diesen im Controller auch zu übersetzen. Lasst uns das auf Mumble mal aufgreifen. |
All of the HTML is generated inline in PHP. We don't have any templates. So it is relay difficult to rewrite the HTML or even replace it with another structure.
I have created a new feature brunch with Twig Template support. (https://github.com/menatwork/contao-multicolumnwizard-bundle/tree/features/twig)
But there are some Questions:
The text was updated successfully, but these errors were encountered: