Any CRUD generadors in nette?

Notice: This thread is very old.
frocco
Member | 46
+
0
-

Anything similar to yii or fuelPHP for getting started quickly?

Thanks

Frank

Filip Procházka
Moderator | 4668
+
+2
-

Nette philosophy is to create and use components, not generate buch of stupid code that could be configured.

frocco
Member | 46
+
0
-

Thanks,
So unlike other frameworks, nette uses components to allow reuse?

Filip Procházka
Moderator | 4668
+
0
-

Exactly. You should write configurable components (ideally extend UI\Control or UI\Form, but anything implementing IComponent should do the trick) and then connect them to presenters using component factories, configure them and reuse them. It's way better than generating code.