Veröffentlicht in Symfony Framework
... --controller=CONTROLLER The name of the controller to create
--route-format=ROUTE-FORMAT The format that is used for the routing (yml, xml, php, annotation)
...
Veröffentlicht in Symfony Framework
1. Default Bundle und DefaultController
Da Symfony4.4 keinen Controller bei der erstellung eines Projektes erstellt, müssen wir ihn selbst per Command erstellen.
Dafür geben wir folgenden Befehl ...
Veröffentlicht in Windows
Windows 7 Bootloader Der Bootmanager unter Windows 7 heisst "BOOTMGR" und nicht mehr "NTLDR".
Man kann Einträge für das Bootmenü mit dem Kommando bcdedit erzeugen.
Siehe:
bcdedit /help
Booteinträge ...
Veröffentlicht in PHP und jQuery Grundlagen
Inhalt
1. Variablen
2. Variablen verketten
3. Konstanten
4. Operatoren
5. Rechnen mit Eingabe
6. Ergebnis ausgeben
7. Einfache Verzweigung
8. Weitere If-Beispiele
9. Mehrfachverzweigung ...
Veröffentlicht in Symfony Framework
... annotation) (default: "annotation")
--template-format The format that is used for templating (twig, php) (default: "twig")
--actions The actions in the controller (multiple values allowed)
--help (-h) ...
Veröffentlicht in Symfony Framework
1. Default Route
Beim erstellen des Bundles wurde die Controller Klasse "DefaultController" mit einer index Action angelegt. Diesen Controller wollen wir jetzt für unsere Startseite verwenden! Beim ...
Veröffentlicht in Symfony Framework
... on the namespace, we suggest EfiBlogBundle.
Bundle name :
The bundle can be generated anywhere. The suggested default directory uses
the standard conventions.
Target directory ...
Veröffentlicht in Symfony Framework
... apps/frontend/config/routeing.yml
tab:
class: sfDoctrineRouteCollection
options:
Jetzt sollte unter http://projekt1.localhost/frontend_dev.php/tab die Tabelle angezeigt werden!
6. Default ...