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.
15 lines
372 B
15 lines
372 B
<?php |
|
/** |
|
* @var yii\web\View $this |
|
* @var mixed $diff |
|
*/ |
|
?> |
|
<div class="default-diff"> |
|
<?php if ($diff === false): ?> |
|
<div class="alert alert-danger">Diff is not supported for this file type.</div> |
|
<?php elseif (empty($diff)): ?> |
|
<div class="alert alert-success">Identical.</div> |
|
<?php else: ?> |
|
<div class="content"><?= $diff ?></div> |
|
<?php endif; ?> |
|
</div>
|
|
|