|
|
@ -59,7 +59,7 @@ use yii\helpers\Console; |
|
|
|
* ~~~ |
|
|
|
* ~~~ |
|
|
|
* php yii faker/generate users |
|
|
|
* php yii faker/generate users |
|
|
|
* |
|
|
|
* |
|
|
|
* #also a short version of this command (generate action is default) |
|
|
|
* //also a short version of this command (generate action is default) |
|
|
|
* php yii faker users |
|
|
|
* php yii faker users |
|
|
|
* ~~~ |
|
|
|
* ~~~ |
|
|
|
* |
|
|
|
* |
|
|
@ -84,13 +84,13 @@ use yii\helpers\Console; |
|
|
|
* You can specify different options of this command: |
|
|
|
* You can specify different options of this command: |
|
|
|
* |
|
|
|
* |
|
|
|
* ~~~ |
|
|
|
* ~~~ |
|
|
|
* #generate fixtures in russian languge |
|
|
|
* //generate fixtures in russian languge |
|
|
|
* php yii faker/generate users 5 --language='ru_RU' |
|
|
|
* php yii faker/generate users 5 --language='ru_RU' |
|
|
|
* |
|
|
|
* |
|
|
|
* #read templates from the other path |
|
|
|
* //read templates from the other path |
|
|
|
* php yii faker/generate all_fixtures --templatePath='@app/path/to/my/custom/templates' |
|
|
|
* php yii faker/generate all_fixtures --templatePath='@app/path/to/my/custom/templates' |
|
|
|
* |
|
|
|
* |
|
|
|
* #generate fixtures into other folders, but be sure that this folders exists or you will get notice about that. |
|
|
|
* //generate fixtures into other folders, but be sure that this folders exists or you will get notice about that. |
|
|
|
* php yii faker/generate all_fixtures --fixturesPath='@tests/unit/fixtures/subfolder1/subfolder2/subfolder3' |
|
|
|
* php yii faker/generate all_fixtures --fixturesPath='@tests/unit/fixtures/subfolder1/subfolder2/subfolder3' |
|
|
|
* ~~~ |
|
|
|
* ~~~ |
|
|
|
* |
|
|
|
* |
|
|
@ -204,8 +204,12 @@ class FixtureController extends \yii\console\controllers\FixtureController |
|
|
|
|
|
|
|
|
|
|
|
if ($this->needToGenerateAll($file)) { |
|
|
|
if ($this->needToGenerateAll($file)) { |
|
|
|
$files = FileHelper::findFiles($templatePath, ['only' => ['.php']]); |
|
|
|
$files = FileHelper::findFiles($templatePath, ['only' => ['.php']]); |
|
|
|
} else { |
|
|
|
} |
|
|
|
$files = FileHelper::findFiles($templatePath, ['only' => [$file.'.php']]); |
|
|
|
else { |
|
|
|
|
|
|
|
foreach(explode(',', $file) as $fileName) { |
|
|
|
|
|
|
|
$filesToSearch[] = $fileName . '.php'; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$files = FileHelper::findFiles($templatePath, ['only' => $filesToSearch]); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (empty($files)) { |
|
|
|
if (empty($files)) { |
|
|
@ -215,6 +219,10 @@ class FixtureController extends \yii\console\controllers\FixtureController |
|
|
|
); |
|
|
|
); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$this->confirmGeneration($files)) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
foreach ($files as $templateFile) { |
|
|
|
foreach ($files as $templateFile) { |
|
|
|
$fixtureFileName = basename($templateFile); |
|
|
|
$fixtureFileName = basename($templateFile); |
|
|
|
$template = $this->getTemplate($templateFile); |
|
|
|
$template = $this->getTemplate($templateFile); |
|
|
@ -340,4 +348,22 @@ class FixtureController extends \yii\console\controllers\FixtureController |
|
|
|
return $fixture; |
|
|
|
return $fixture; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Prompts user with message if he confirm generation with given fixture templates files. |
|
|
|
|
|
|
|
* @param array $files |
|
|
|
|
|
|
|
* @return boolean |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function confirmGeneration($files) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->stdout("Fixtures will be generated under the path: \n", Console::FG_YELLOW); |
|
|
|
|
|
|
|
$this->stdout(realpath(Yii::getAlias($this->fixturesPath, false)) ."\n\n", Console::FG_GREEN); |
|
|
|
|
|
|
|
$this->stdout("Templates will be taken from path: \n", Console::FG_YELLOW); |
|
|
|
|
|
|
|
$this->stdout(realpath(Yii::getAlias($this->templatePath, false)) . "\n\n", Console::FG_GREEN); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
foreach ($files as $index => $fileName) { |
|
|
|
|
|
|
|
$this->stdout(" " . $index +1 . ". " . basename($fileName) . "\n",Console::FG_GREEN); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return $this->confirm('Generate above fixtures?'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|