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.
|
- <?php
- /* @var $this yii\web\View */
- /* @var $diff mixed */
- ?>
- <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>
|