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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
4a9b2d2b
Commit
4a9b2d2b
authored
Jan 02, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for using array-typed arguments for console commands
parent
3ab56021
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
54 additions
and
12 deletions
+54
-12
console.md
docs/guide/console.md
+48
-9
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Controller.php
framework/yii/console/Controller.php
+4
-2
User.php
framework/yii/web/User.php
+1
-1
No files found.
docs/guide/console.md
View file @
4a9b2d2b
...
@@ -10,10 +10,10 @@ Usage
...
@@ -10,10 +10,10 @@ Usage
You can execute controller action using the following syntax:
You can execute controller action using the following syntax:
```
```
yii <route> [--
param1=value1 --param
2 ...]
yii <route> [--
option1=value1 --option2=value2 ... argument1 argument
2 ...]
```
```
For example,
`MigrationController::
create
`
with
`MigrationController::$migrationTable`
set can be called from command
For example,
`MigrationController::
actionCreate()
`
with
`MigrationController::$migrationTable`
set can be called from command
line like the following:
line like the following:
```
```
...
@@ -55,7 +55,7 @@ exit($exitCode);
...
@@ -55,7 +55,7 @@ exit($exitCode);
```
```
This script is a part of your application so you're free to adjust it. The
re
`YII_DEBUG`
can be turned off
if you do
This script is a part of your application so you're free to adjust it. The
`YII_DEBUG`
constant can be set
`false`
if you do
not want to see stacktrace on error and want to improve overall performance. In both basic and advanced application
not want to see stacktrace on error and want to improve overall performance. In both basic and advanced application
templates it is enabled to provide more developer-friendly environment.
templates it is enabled to provide more developer-friendly environment.
...
@@ -71,13 +71,53 @@ done in advanced application template.
...
@@ -71,13 +71,53 @@ done in advanced application template.
Creating your own console commands
Creating your own console commands
----------------------------------
----------------------------------
### Con
troller
### Con
sole Controller and Action
### Action
A console command is defined as a controller class extending from
[
[yii\console\Controller
]
]. In the controller class,
you define one or several actions that correspond to the sub-commands of the command. Within each action, you write code
to implement certain tasks for that particular sub-command.
### Parameters
When running a command, you need to specify the route to the corresponding controller action. For example,
the route
`migrate/create`
specifies the sub-command corresponding to the
`MigrateController::actionCreate()`
action method.
If a route does not contain an action ID, the default action will be executed.
### Return codes
### Options
By overriding the
[
[yii\console\Controller::globalOptions()
]
] method, you can specify options that are available
to a console command. The method should return a list of public property names of the controller class.
When running a command, you may specify the value of an option using the syntax
`--OptionName=OptionValue`
.
This will assign
`OptionValue`
to the
`OptionName`
property of the controller class.
### Arguments
Besides options, a command can also receive arguments. The arguments will be passed as the parameters to the action
method corresponding to the requested sub-command. The first argument corresponds to the first parameter, the second
corresponds to the second, and so on. If there are not enough arguments are provided, the corresponding parameters
may take the declared default values, or if they do not have default value the command will exit with an error.
You may use
`array`
type hint to indicate that an argument should be treated as an array. The array will be generated
by splitting the input string by commas.
The follow examples show how to declare arguments:
```
php
class
ExampleController
extends
\yii\console\Controller
{
// The command "yii example/create test" will call "actionCreate('test')"
public
function
actionCreate
(
$name
)
{
...
}
// The command "yii example/index city" will call "actionIndex('city', 'name')"
// The command "yii example/index city id" will call "actionIndex('city', 'id')"
public
function
actionIndex
(
$category
,
$order
=
'name'
)
{
...
}
// The command "yii example/add test" will call "actionAdd(['test'])"
// The command "yii example/add test1,test2" will call "actionAdd(['test1', 'test2'])"
public
function
actionAdd
(
array
$name
)
{
...
}
}
```
### Exit Code
Using return codes is the best practice of console application development. If command returns
`0`
it means everything
Using return codes is the best practice of console application development. If command returns
`0`
it means everything
is OK. If it is a number more than zero, we have an error and integer returned is the error code.
is OK. If it is a number more than zero, we have an error and integer returned is the error code.
\ No newline at end of file
framework/CHANGELOG.md
View file @
4a9b2d2b
...
@@ -53,6 +53,7 @@ Yii Framework 2 Change Log
...
@@ -53,6 +53,7 @@ Yii Framework 2 Change Log
-
Enh: Added
`Widget::autoIdPrefix`
to support prefixing automatically generated widget IDs (qiangxue)
-
Enh: Added
`Widget::autoIdPrefix`
to support prefixing automatically generated widget IDs (qiangxue)
-
Enh: Support for file aliases in console command 'message' (omnilight)
-
Enh: Support for file aliases in console command 'message' (omnilight)
-
Enh: Sort and Pagination can now create absolute URLs (cebe)
-
Enh: Sort and Pagination can now create absolute URLs (cebe)
-
Enh: Added support for using array-typed arguments for console commands (qiangxue)
-
Chg #1519:
`yii\web\User::loginRequired()`
now returns the
`Response`
object instead of exiting the application (qiangxue)
-
Chg #1519:
`yii\web\User::loginRequired()`
now returns the
`Response`
object instead of exiting the application (qiangxue)
-
Chg #1586:
`QueryBuilder::buildLikeCondition()`
will now escape special characters and use percentage characters by default (qiangxue)
-
Chg #1586:
`QueryBuilder::buildLikeCondition()`
will now escape special characters and use percentage characters by default (qiangxue)
-
Chg #1610:
`Html::activeCheckboxList()`
and
`Html::activeRadioList()`
will submit an empty string if no checkbox/radio is selected (qiangxue)
-
Chg #1610:
`Html::activeCheckboxList()`
and
`Html::activeRadioList()`
will submit an empty string if no checkbox/radio is selected (qiangxue)
...
...
framework/yii/console/Controller.php
View file @
4a9b2d2b
...
@@ -111,12 +111,14 @@ class Controller extends \yii\base\Controller
...
@@ -111,12 +111,14 @@ class Controller extends \yii\base\Controller
$missing
=
[];
$missing
=
[];
foreach
(
$method
->
getParameters
()
as
$i
=>
$param
)
{
foreach
(
$method
->
getParameters
()
as
$i
=>
$param
)
{
$name
=
$param
->
getName
();
if
(
$param
->
isArray
()
&&
isset
(
$args
[
$i
]))
{
$args
[
$i
]
=
preg_split
(
'/\s*,\s*/'
,
$args
[
$i
]);
}
if
(
!
isset
(
$args
[
$i
]))
{
if
(
!
isset
(
$args
[
$i
]))
{
if
(
$param
->
isDefaultValueAvailable
())
{
if
(
$param
->
isDefaultValueAvailable
())
{
$args
[
$i
]
=
$param
->
getDefaultValue
();
$args
[
$i
]
=
$param
->
getDefaultValue
();
}
else
{
}
else
{
$missing
[]
=
$
name
;
$missing
[]
=
$
param
->
getName
()
;
}
}
}
}
}
}
...
...
framework/yii/web/User.php
View file @
4a9b2d2b
...
@@ -321,7 +321,7 @@ class User extends Component
...
@@ -321,7 +321,7 @@ class User extends Component
* calling this method.
* calling this method.
*
*
* Note that when [[loginUrl]] is set, calling this method will NOT terminate the application execution.
* Note that when [[loginUrl]] is set, calling this method will NOT terminate the application execution.
*
*
* @return Response the redirection response if [[loginUrl]] is set
* @return Response the redirection response if [[loginUrl]] is set
* @throws AccessDeniedHttpException the "Access Denied" HTTP exception if [[loginUrl]] is not set
* @throws AccessDeniedHttpException the "Access Denied" HTTP exception if [[loginUrl]] is not set
*/
*/
...
...
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