Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
d0ee41e4
Commit
d0ee41e4
authored
Nov 17, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6086 from artyhedgehog/patch-1
Grammar fix
parents
4985d13c
836fef92
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
tool-gii.md
docs/guide/tool-gii.md
+6
-6
No files found.
docs/guide/tool-gii.md
View file @
d0ee41e4
...
...
@@ -176,7 +176,7 @@ If you open a folder `@app\vendor\yiisoft\yii2-gii\generators`, you'll see six f
+ model
+ module
```
This is
name generator
. If you open any of these folders, you can see the folder
`default`
. This folder is name of the template.
This is
generator name
. If you open any of these folders, you can see the folder
`default`
. This folder is name of the template.
Copy folder
`@app\vendor\yiisoft\yii2-gii\generators\crud\default`
to another location, for example
`@app\myTemplates\crud\`.
Now open this folder and modify any template to fit your desires, for example, add `
errorSummary
` in `
views
\_
form.php
`:
...
...
@@ -194,7 +194,7 @@ Now open this folder and modify any template to fit your desires, for example, a
//...
```
Now you need to tell GII about our template.The setting is made in the config file:
Now you need to tell GII about our template.
The setting is made in the config file:
```php
// config/web.php for basic app
...
...
@@ -204,10 +204,10 @@ if (YII_ENV_DEV) {
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1', '::1', '192.168.0.*', '192.168.178.20'],
'generators' => [ //here
'crud' => [ //
name generator
'class' => 'yii\gii\generators\crud\Generator', //
class generator
'crud' => [ //
generator name
'class' => 'yii\gii\generators\crud\Generator', //
generator class
'templates' => [ //setting for out templates
'myCrud' => '@app/myTemplates/crud/default', //
name templat
e => path to template
'myCrud' => '@app/myTemplates/crud/default', //
template nam
e => path to template
]
]
],
...
...
@@ -220,7 +220,7 @@ Creating your own generators
----------------------------
Open the folder of any generator and you will see two files `
form.php
` and `
Generator.php
`.
One is the form, the second is the
class generator
. For create your own generator, you need to create or
One is the form, the second is the
generator class
. For create your own generator, you need to create or
override these classes in any folder. Again as in the previous paragraph customize configuration:
```php
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment