File tree Expand file tree Collapse file tree 7 files changed +19
-23
lines changed Expand file tree Collapse file tree 7 files changed +19
-23
lines changed Original file line number Diff line number Diff line change 1
1
Yii Framework 2 gii extension Change Log
2
2
========================================
3
3
4
- 2.2.4 under development
4
+ 2.2.4 December 30, 2021
5
5
-----------------------
6
6
7
7
- Bug #467 : Fix view ` generators/crud/default/controller ` (WinterSilence, cjrf)
8
8
- Bug #476 : Fix stucking datalist options in form generator (WinterSilence)
9
- - Enh #485 : Add validation rules for ` enableI18N ` and ` messageCategory ` to Generator (WinterSilence)
10
9
- Bug #484 : Add parent's labels and hints, fix rule for attribute ` moduleClass ` in module generator (WinterSilence)
11
10
- Bug #486 : Update ` assets/js/bs4-native.min.js ` to latest version (WinterSilence)
12
11
- Bug #488 : Fix ` ActionColumn::$urlCreator ` in index template of CRUD generator (WinterSilence)
12
+ - Enh #485 : Add validation rules for ` enableI18N ` and ` messageCategory ` to Generator (WinterSilence)
13
13
14
14
15
15
2.2.3 August 09, 2021
Original file line number Diff line number Diff line change 15
15
/**
16
16
* CodeFile represents a code file to be generated.
17
17
*
18
- * @property-read string $relativePath The code file path relative to the application base path. This property
19
- * is read-only.
20
- * @property-read string $type The code file extension (e.g. php, txt). This property is read-only.
18
+ * @property-read string $relativePath The code file path relative to the application base path.
19
+ * @property-read string $type The code file extension (e.g. php, txt).
21
20
*
22
21
* @author Qiang Xue <qiang.xue@gmail.com>
23
22
* @since 2.0
Original file line number Diff line number Diff line change 16
16
/**
17
17
* This generator will generate a controller and one or a few action view files.
18
18
*
19
- * @property-read array $actionIDs An array of action IDs entered by the user. This property is read-only.
20
- * @property-read string $controllerFile The controller class file path. This property is read-only.
21
- * @property-read string $controllerID The controller ID. This property is read-only.
22
- * @property-read string $controllerNamespace The namespace of the controller class. This property is
23
- * read-only.
24
- * @property-read string $controllerSubPath The controller sub path. This property is read-only.
19
+ * @property-read array $actionIDs An array of action IDs entered by the user.
20
+ * @property-read string $controllerFile The controller class file path.
21
+ * @property-read string $controllerID The controller ID.
22
+ * @property-read string $controllerNamespace The namespace of the controller class.
23
+ * @property-read string $controllerSubPath The controller sub path.
25
24
*
26
25
* @author Qiang Xue <qiang.xue@gmail.com>
27
26
* @since 2.0
Original file line number Diff line number Diff line change 19
19
/**
20
20
* Generates CRUD controller and views.
21
21
*
22
- * @property-read array $columnNames Model column/attribute names. This property is read-only.
23
- * @property-read string $controllerID The controller ID (without the module ID prefix). This property is
24
- * read-only.
25
- * @property-read string $nameAttribute This property is read-only.
26
- * @property-read array $searchAttributes Searchable attributes. This property is read-only.
27
- * @property-read \yii\db\TableSchema|bool $tableSchema This property is read-only.
28
- * @property-read string $viewPath The controller view path. This property is read-only.
22
+ * @property-read array $columnNames Model column/attribute names.
23
+ * @property-read string $controllerID The controller ID (without the module ID prefix).
24
+ * @property-read string $nameAttribute
25
+ * @property-read array $searchAttributes Searchable attributes.
26
+ * @property-read \yii\db\TableSchema|bool $tableSchema
27
+ * @property-read string $viewPath The controller view path.
29
28
*
30
29
* @author Qiang Xue <qiang.xue@gmail.com>
31
30
* @since 2.0
Original file line number Diff line number Diff line change 13
13
/**
14
14
* This generator will generate the skeleton files needed by an extension.
15
15
*
16
- * @property-read string $keywordsArrayJson A json encoded array with the given keywords. This property is
17
- * read-only.
18
- * @property-read bool $outputPath The directory that contains the module class. This property is read-only.
16
+ * @property-read string $keywordsArrayJson A json encoded array with the given keywords.
17
+ * @property-read bool $outputPath The directory that contains the module class.
19
18
*
20
19
* @author Tobias Munk <schmunk@usrbin.de>
21
20
* @since 2.0
Original file line number Diff line number Diff line change 14
14
/**
15
15
* This generator will generate an action view file based on the specified model class.
16
16
*
17
- * @property-read array $modelAttributes List of safe attributes of [[modelClass]]. This property is
18
- * read-only.
17
+ * @property-read array $modelAttributes List of safe attributes of [[modelClass]].
19
18
*
20
19
* @author Qiang Xue <qiang.xue@gmail.com>
21
20
* @since 2.0
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ class Generator extends \yii\gii\Generator
76
76
*/
77
77
protected $ classNames = [];
78
78
79
+
79
80
/**
80
81
* @inheritdoc
81
82
*/
You can’t perform that action at this time.
0 commit comments