gii.md 439 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
The Gii code generation tool
============================

Yii2 includes a handy tool that allows rapid prototyping by generating commonly used code snippets
as well as complete CRUD controllers.

Installing and configuring
--------------------------

Add these lines to your config file:

```php
13 14 15
'modules' => [
	'gii' => ['yii\gii\Module']
]
16 17
```

18 19 20
How to use it
-------------

21 22 23 24 25
Creating your own templates
---------------------------

TDB