mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Including the FlashComponent by default in the controller when baking.
This commit is contained in:
parent
0df7bcd26d
commit
604cb0e48b
1 changed files with 2 additions and 2 deletions
|
@ -384,9 +384,9 @@ class ControllerTask extends BakeTask {
|
||||||
* @return array Components the user wants to use.
|
* @return array Components the user wants to use.
|
||||||
*/
|
*/
|
||||||
public function doComponents() {
|
public function doComponents() {
|
||||||
$components = array('Paginator');
|
$components = array('Paginator', 'Flash');
|
||||||
return array_merge($components, $this->_doPropertyChoices(
|
return array_merge($components, $this->_doPropertyChoices(
|
||||||
__d('cake_console', "Would you like this controller to use other components\nbesides PaginatorComponent?"),
|
__d('cake_console', "Would you like this controller to use other components\nbesides PaginatorComponent and FlashComponent?"),
|
||||||
__d('cake_console', "Please provide a comma separated list of the component names you'd like to use.\nExample: 'Acl, Security, RequestHandler'")
|
__d('cake_console', "Please provide a comma separated list of the component names you'd like to use.\nExample: 'Acl, Security, RequestHandler'")
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue