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
f3315475
Commit
f3315475
authored
Jan 02, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #1748: code cleanup.
parent
03a88e4f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
32 deletions
+33
-32
FixtureController.php
extensions/yii/faker/FixtureController.php
+0
-0
FixtureController.php
framework/yii/console/controllers/FixtureController.php
+33
-32
No files found.
extensions/yii/faker/FixtureController.php
View file @
f3315475
This diff is collapsed.
Click to expand it.
framework/yii/console/controllers/FixtureController.php
View file @
f3315475
...
...
@@ -15,35 +15,36 @@ use yii\console\Exception;
* This command manages fixtures load to the database tables.
* You can specify different options of this command to point fixture manager
* to the specific tables of the different database connections.
*
*
* To use this command simply configure your console.php config like this:
*
* ~~~
*
'db' => [
*
'class' => 'yii\db\Connection',
*
'dsn' => 'mysql:host=localhost;dbname={your_database}',
*
'username' => '{your_db_user}',
*
'password' => '',
*
'charset' => 'utf8',
*
],
*
'fixture' => [
*
'class' => 'yii\test\DbFixtureManager',
*
],
*
'db' => [
*
'class' => 'yii\db\Connection',
*
'dsn' => 'mysql:host=localhost;dbname={your_database}',
*
'username' => '{your_db_user}',
*
'password' => '',
*
'charset' => 'utf8',
*
],
*
'fixture' => [
*
'class' => 'yii\test\DbFixtureManager',
*
],
* ~~~
*
*
* ~~~
* #load fixtures under $fixture
s
Path to the "users" table
*
php
yii fixture/apply users
*
* #load fixtures under $fixturePath to the "users" table
* yii fixture/apply users
*
* #also a short version of this command (generate action is default)
*
php
yii fixture users
*
* #load fixtures under $fixture
s
Path to the "users" table to the different connection
*
php
yii fixture/apply users --db='someOtherDbConneciton'
*
* #load fixtures under different $fixture
s
Path to the "users" table.
*
php yii fixture/apply users --fixtures
Path='@app/some/other/path/to/fixtures'
* yii fixture users
*
* #load fixtures under $fixturePath to the "users" table to the different connection
* yii fixture/apply users --db='someOtherDbConneciton'
*
* #load fixtures under different $fixturePath to the "users" table.
*
yii fixture/apply users --fixture
Path='@app/some/other/path/to/fixtures'
* ~~~
*
*
* @author Mark Jebri <mark.github@yandex.ru>
* @since 2.0
*/
...
...
@@ -61,11 +62,11 @@ class FixtureController extends Controller
* Alias to the path, where all fixtures are stored.
* @var string
*/
public
$fixture
s
Path
=
'@tests/unit/fixtures'
;
public
$fixturePath
=
'@tests/unit/fixtures'
;
/**
* Id of the database connection component of the application.
* @var string
* @var string
*/
public
$db
=
'db'
;
...
...
@@ -76,14 +77,14 @@ class FixtureController extends Controller
public
function
globalOptions
()
{
return
array_merge
(
parent
::
globalOptions
(),
[
'db'
,
'fixtures
Path'
'db'
,
'fixture
Path'
]);
}
/**
* This method is invoked right before an action is to be executed (after all possible filters.)
* It checks that fixtures path and database connection are available.
* @param
type
$action
* @param
\yii\base\Action
$action
* @return boolean
*/
public
function
beforeAction
(
$action
)
...
...
@@ -103,7 +104,7 @@ class FixtureController extends Controller
*/
public
function
actionApply
(
$fixture
)
{
$this
->
fixtureManager
->
basePath
=
$this
->
fixture
s
Path
;
$this
->
fixtureManager
->
basePath
=
$this
->
fixturePath
;
$this
->
fixtureManager
->
db
=
$this
->
db
;
$this
->
loadFixtures
([
$fixture
]);
}
...
...
@@ -114,7 +115,7 @@ class FixtureController extends Controller
*/
public
function
actionClear
(
$table
)
{
$this
->
dbConnection
->
createCommand
()
->
truncateTable
(
$table
)
->
execute
();
$this
->
getDbConnection
()
->
createCommand
()
->
truncateTable
(
$table
)
->
execute
();
echo
"Table
\"
{
$table
}
\"
was successfully cleared.
\n
"
;
}
...
...
@@ -124,17 +125,17 @@ class FixtureController extends Controller
*/
public
function
checkRequirements
()
{
$path
=
Yii
::
getAlias
(
$this
->
fixture
s
Path
,
false
);
$path
=
Yii
::
getAlias
(
$this
->
fixturePath
,
false
);
if
(
!
is_dir
(
$path
)
||
!
is_writable
(
$path
))
{
throw
new
Exception
(
"The fixtures path
\"
{
$this
->
fixture
s
Path
}
\"
not exist or is not writable"
);
throw
new
Exception
(
"The fixtures path
\"
{
$this
->
fixturePath
}
\"
not exist or is not writable"
);
}
}
/**
* Returns database connection component
* @return yii\db\Connection|null
* @return
\
yii\db\Connection|null
*/
public
function
getDbConnection
()
{
...
...
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