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
9b69e2d1
Commit
9b69e2d1
authored
Apr 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3293 from suralc/patch-4
Fix #3265
parents
340278b5
1ad5c4c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
CHANGELOG.md
extensions/gii/CHANGELOG.md
+1
-0
Generator.php
extensions/gii/generators/crud/Generator.php
+3
-1
No files found.
extensions/gii/CHANGELOG.md
View file @
9b69e2d1
...
...
@@ -5,6 +5,7 @@ Yii Framework 2 gii extension Change Log
--------------------------
-
Bug #1263: Fixed the issue that Gii and Debug modules might be affected by incompatible asset manager configuration (qiangxue)
-
Bug #3265: Fixed incorrect controller class name validation (suralc)
-
Enh #3088: The gii module will manage their own URL rules now (qiangxue)
-
Enh #3222: Added
`useTablePrefix`
option to the model generator for Gii (horizons2)
...
...
extensions/gii/generators/crud/Generator.php
View file @
9b69e2d1
...
...
@@ -67,6 +67,7 @@ class Generator extends \yii\gii\Generator
[[
'modelClass'
],
'validateClass'
,
'params'
=>
[
'extends'
=>
BaseActiveRecord
::
className
()]],
[[
'baseControllerClass'
],
'validateClass'
,
'params'
=>
[
'extends'
=>
Controller
::
className
()]],
[[
'controllerClass'
],
'match'
,
'pattern'
=>
'/Controller$/'
,
'message'
=>
'Controller class name must be suffixed with "Controller".'
],
[[
'controllerClass'
],
'match'
,
'pattern'
=>
'/(^|\\\\)[A-Z][^\\\\]+Controller$/'
,
'message'
=>
'Controller class name must start with an uppercase letter.'
],
[[
'controllerClass'
,
'searchModelClass'
],
'validateNewClass'
],
[[
'indexWidgetType'
],
'in'
,
'range'
=>
[
'grid'
,
'list'
]],
[[
'modelClass'
],
'validateModelClass'
],
...
...
@@ -100,7 +101,8 @@ class Generator extends \yii\gii\Generator
'modelClass'
=>
'This is the ActiveRecord class associated with the table that CRUD will be built upon.
You should provide a fully qualified class name, e.g., <code>app\models\Post</code>.'
,
'controllerClass'
=>
'This is the name of the controller class to be generated. You should
provide a fully qualified namespaced class, .e.g, <code>app\controllers\PostController</code>.'
,
provide a fully qualified namespaced class, .e.g, <code>app\controllers\PostController</code>.
The controller class name should follow the CamelCase scheme with an uppercase first letter'
,
'baseControllerClass'
=>
'This is the class that the new CRUD controller class will extend from.
You should provide a fully qualified class name, e.g., <code>yii\web\Controller</code>.'
,
'moduleID'
=>
'This is the ID of the module that the generated controller will belong to.
...
...
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