Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

74 lines
1.9 KiB

11 years ago
<?php
11 years ago
use yii\gii\Generator;
11 years ago
use yii\helpers\Html;
11 years ago
use yii\widgets\ActiveForm;
11 years ago
use yii\gii\components\ActiveField;
11 years ago
use yii\gii\CodeFile;
11 years ago
/**
11 years ago
* @var yii\base\View $this
* @var yii\gii\Generator $generator
* @var string $id
11 years ago
* @var yii\widgets\ActiveForm $form
11 years ago
* @var string $results
* @var boolean $hasError
11 years ago
* @var CodeFile[] $files
11 years ago
* @var array $answers
11 years ago
*/
$this->title = $generator->getName();
11 years ago
$templates = array();
foreach ($generator->templates as $name => $path) {
$templates[$name] = "$name ($path)";
}
11 years ago
?>
<div class="default-view">
11 years ago
<h1><?php echo Html::encode($this->title); ?></h1>
11 years ago
<p><?php echo $generator->getDescription(); ?></p>
<?php $form = ActiveForm::begin(array(
'id' => "$id-generator",
11 years ago
'successCssClass' => '',
'fieldConfig' => array('class' => ActiveField::className()),
)); ?>
11 years ago
<div class="row">
<div class="col-lg-8">
11 years ago
<?php echo $this->renderFile($generator->formView(), array(
'generator' => $generator,
'form' => $form,
)); ?>
<?php echo $form->field($generator, 'template')->sticky()
11 years ago
->label('Code Template')
11 years ago
->dropDownList($templates)->hint('
Please select which set of the templates should be used to generated the code.
'); ?>
<div class="form-group">
<?php echo Html::submitButton('Preview', array('name' => 'preview', 'class' => 'btn btn-success')); ?>
11 years ago
11 years ago
<?php if(isset($files)): ?>
<?php echo Html::submitButton('Generate', array('name' => 'generate', 'class' => 'btn btn-danger')); ?>
<?php endif; ?>
</div>
11 years ago
</div>
</div>
11 years ago
11 years ago
<?php
if (isset($results)) {
echo $this->render('view/results', array(
'generator' => $generator,
'results' => $results,
'hasError' => $hasError,
));
} elseif (isset($files)) {
echo $this->render('view/files', array(
'generator' => $generator,
'files' => $files,
'answers' => $answers,
));
}
?>
11 years ago
<?php ActiveForm::end(); ?>
11 years ago
</div>