-
-
Notifications
You must be signed in to change notification settings - Fork 65
Add widgets configuration file (#436) #452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 7 commits
eed0b70
511a803
1616635
ed0916f
a659720
27d94b9
26d239a
3ea9b6e
e16920d
3ee122b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,12 @@ | |
| 'events' => [], | ||
| 'events-web' => ['$events'], | ||
| 'events-console' => ['$events'], | ||
| 'widgets' => [], | ||
| 'widgets-web' => [ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Configure Yii Widgets params. See example: https://github.com/yiisoft/demo-diary/blob/675115b0879881e117ed09dc6d77a64a93ebf38f/config/site/params.php#L17
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
| '$widgets', | ||
| 'web/widgets.php', | ||
| ], | ||
| 'widgets-console' => '$widgets', | ||
|
||
| 'routes' => 'common/routes.php', | ||
| 'bootstrap' => 'common/bootstrap.php', | ||
| 'bootstrap-web' => '$bootstrap', | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <?php | ||
|
|
||
| declare(strict_types=1); | ||
|
|
||
| return []; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changelog entry references "#452", but this PR/linked issue is #436. Please update the issue/PR number in the changelog line so it correctly points to the change being introduced here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed