admin_media.php 1 location
|
@@ 649-655 (lines=7) @@
|
| 646 |
|
<?= I18N::translate('Exclude subfolders') ?> |
| 647 |
|
</label> |
| 648 |
|
|
| 649 |
|
<?php elseif ($files === 'external'): ?> |
| 650 |
|
|
| 651 |
|
<?= I18N::translate('External media files have a URL instead of a filename.') ?> |
| 652 |
|
<input type="hidden" name="media_folder" value="<?= Html::escape($media_folder) ?>"> |
| 653 |
|
<input type="hidden" name="media_path" value="<?= Html::escape($media_path) ?>"> |
| 654 |
|
|
| 655 |
|
<?php endif ?> |
| 656 |
|
</td> |
| 657 |
|
</tr> |
| 658 |
|
</tbody> |
edit_changes.php 1 location
|
@@ 172-182 (lines=11) @@
|
| 169 |
|
|
| 170 |
|
<h2><?= $controller->getPageTitle() ?></h2> |
| 171 |
|
|
| 172 |
|
<?php if (empty($all_changes)): ?> |
| 173 |
|
<p> |
| 174 |
|
<?= I18N::translate('There are no pending changes.') ?> |
| 175 |
|
</p> |
| 176 |
|
<p> |
| 177 |
|
<a class="btn btn-primary" href="<?= Html::escape($url) ?>"> |
| 178 |
|
<?= I18N::translate('continue') ?> |
| 179 |
|
</a> |
| 180 |
|
</p> |
| 181 |
|
<?php endif ?> |
| 182 |
|
|
| 183 |
|
<?php foreach ($all_changes as $gedcom_name => $gedcom_changes): ?> |
| 184 |
|
|
| 185 |
|
<h3> |
edit_interface.php 1 location
|
@@ 627-632 (lines=6) @@
|
| 624 |
|
<div class="col-sm-9"> |
| 625 |
|
<input type="text" id="FILE" name="FILE" class="form-control" value="<?= Html::escape($FILE) ?>" required> |
| 626 |
|
|
| 627 |
|
<?php if ($auto_file !== ''): ?> |
| 628 |
|
<a href="#" class="btn btn-link" title="<?= Html::escape($auto_file) ?>" |
| 629 |
|
onclick="document.querySelector('#FILE').value='<?= Html::escape($auto_file) ?>'; document.querySelector('#FILE').focus(); return false;"> |
| 630 |
|
<?= I18N::translate('Create a unique filename') ?> |
| 631 |
|
</a> |
| 632 |
|
<?php endif ?> |
| 633 |
|
</div> |
| 634 |
|
</div> |
| 635 |
|
|