diff --git a/lib/Cake/Console/Command/Task/ControllerTask.php b/lib/Cake/Console/Command/Task/ControllerTask.php index 13a500bf306..920f63241f4 100644 --- a/lib/Cake/Console/Command/Task/ControllerTask.php +++ b/lib/Cake/Console/Command/Task/ControllerTask.php @@ -475,6 +475,7 @@ public function getOptionParser() { 'short' => 'c', 'help' => __d('cake_console', 'The connection the controller\'s model is on.') ))->addOption('theme', array( + 'short' => 't', 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addSubcommand('all', array( 'help' => __d('cake_console', 'Bake all controllers with CRUD methods.') diff --git a/lib/Cake/Console/Command/Task/FixtureTask.php b/lib/Cake/Console/Command/Task/FixtureTask.php index 0d425d35ba4..e3812bb032f 100644 --- a/lib/Cake/Console/Command/Task/FixtureTask.php +++ b/lib/Cake/Console/Command/Task/FixtureTask.php @@ -88,7 +88,8 @@ public function getOptionParser() { 'short' => 's', 'boolean' => true ))->addOption('theme', array( - 'help' => __d('cake_console', 'Theme to use when baking code.') + 'short' => 't', + 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addOption('records', array( 'help' => __d('cake_console', 'Used with --count and /all commands to pull [n] records from the live tables, where [n] is either --count or the default of 10.'), 'short' => 'r', diff --git a/lib/Cake/Console/Command/Task/ModelTask.php b/lib/Cake/Console/Command/Task/ModelTask.php index af611160caf..a1ef97d5862 100644 --- a/lib/Cake/Console/Command/Task/ModelTask.php +++ b/lib/Cake/Console/Command/Task/ModelTask.php @@ -993,6 +993,7 @@ public function getOptionParser() { 'short' => 'p', 'help' => __d('cake_console', 'Plugin to bake the model into.') ))->addOption('theme', array( + 'short' => 't', 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addOption('connection', array( 'short' => 'c', diff --git a/lib/Cake/Console/Command/Task/ProjectTask.php b/lib/Cake/Console/Command/Task/ProjectTask.php index 44827fedb05..ed856bfdef2 100644 --- a/lib/Cake/Console/Command/Task/ProjectTask.php +++ b/lib/Cake/Console/Command/Task/ProjectTask.php @@ -439,6 +439,7 @@ public function getOptionParser() { 'boolean' => true, 'help' => __d('cake_console', 'Create empty files in each of the directories. Good if you are using git') ))->addOption('theme', array( + 'short' => 't', 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addOption('skel', array( 'default' => current(App::core('Console')) . 'Templates' . DS . 'skel', diff --git a/lib/Cake/Console/Command/Task/TestTask.php b/lib/Cake/Console/Command/Task/TestTask.php index 228b41a0c92..fed43cc6f13 100644 --- a/lib/Cake/Console/Command/Task/TestTask.php +++ b/lib/Cake/Console/Command/Task/TestTask.php @@ -564,6 +564,7 @@ public function getOptionParser() { ))->addArgument('name', array( 'help' => __d('cake_console', 'An existing class to bake tests for.') ))->addOption('theme', array( + 'short' => 't', 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addOption('plugin', array( 'short' => 'p', diff --git a/lib/Cake/Console/Command/Task/ViewTask.php b/lib/Cake/Console/Command/Task/ViewTask.php index 9886ed79800..ab88e2217f5 100644 --- a/lib/Cake/Console/Command/Task/ViewTask.php +++ b/lib/Cake/Console/Command/Task/ViewTask.php @@ -436,7 +436,8 @@ public function getOptionParser() { 'help' => __d('cake_console', 'Set to only bake views for a prefix in Routing.prefixes'), 'boolean' => true ))->addOption('theme', array( - 'help' => __d('cake_console', 'Theme to use when baking code.') + 'short' => 't', + 'help' => __d('cake_console', 'Theme to use when baking code.') ))->addOption('connection', array( 'short' => 'c', 'help' => __d('cake_console', 'The connection the connected model is on.')