Commit 3dbfd3ea by Alexander Makarov

Gii: renamed action "new" to "create"

parent 986a8b0c
......@@ -28,7 +28,7 @@ class CodeFile extends Object
/**
* The code file is new.
*/
const OP_NEW = 'new';
const OP_CREATE = 'create';
/**
* The code file already exists, and the new one may need to overwrite it.
*/
......@@ -68,7 +68,7 @@ class CodeFile extends Object
if (is_file($path)) {
$this->operation = file_get_contents($path) === $content ? self::OP_SKIP : self::OP_OVERWRITE;
} else {
$this->operation = self::OP_NEW;
$this->operation = self::OP_CREATE;
}
}
......@@ -79,7 +79,7 @@ class CodeFile extends Object
public function save()
{
$module = Yii::$app->controller->module;
if ($this->operation === self::OP_NEW) {
if ($this->operation === self::OP_CREATE) {
$dir = dirname($this->path);
if (!is_dir($dir)) {
$mask = @umask(0);
......
......@@ -250,7 +250,7 @@ abstract class Generator extends Model
$hasError = true;
$lines[] = "generating $relativePath\n<span class=\"error\">$error</span>";
} else {
$lines[] = $file->operation === CodeFile::OP_NEW ? " generated $relativePath" : " overwrote $relativePath";
$lines[] = $file->operation === CodeFile::OP_CREATE ? " generated $relativePath" : " overwrote $relativePath";
}
} else {
$lines[] = " skipped $relativePath";
......
......@@ -53,7 +53,7 @@ use yii\gii\CodeFile;
if ($file->operation === CodeFile::OP_SKIP) {
echo '&nbsp;';
} else {
echo Html::checkBox("answers[{$file->id}]", isset($answers) ? isset($answers[$file->id]) : ($file->operation === CodeFile::OP_NEW));
echo Html::checkBox("answers[{$file->id}]", isset($answers) ? isset($answers[$file->id]) : ($file->operation === CodeFile::OP_CREATE));
}
?>
</td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment