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.
 
 

18 lines
473 B

<?php
/**
* @var yii\web\View $this
* @var yii\gii\Generator $generator
* @var string $results
* @var boolean $hasError
*/
?>
<div class="default-view-results">
<?php
if ($hasError) {
echo '<div class="alert alert-danger">There was something wrong when generating the code. Please check the following messages.</div>';
} else {
echo '<div class="alert alert-success">' . $generator->successMessage() . '</div>';
}
?>
<pre><?= nl2br($results) ?></pre>
</div>