summaryrefslogtreecommitdiff
path: root/resources/views/modules/media/tab.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-10-12 11:04:12 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-10-12 11:15:32 +0100
commitdd6b2bfcc550270bb6d6778e11576148f71e4330 (patch)
tree9462a8eabe1103a0e79c18c521b6b4858a3fb2dc /resources/views/modules/media/tab.php
parentafb591d7c8a3029b0ca03e6d185cacca3c22eb5f (diff)
downloadwebtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.gz
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.tar.bz2
webtrees-dd6b2bfcc550270bb6d6778e11576148f71e4330.zip
Use .phtml extension for template files
Diffstat (limited to 'resources/views/modules/media/tab.php')
-rw-r--r--resources/views/modules/media/tab.php21
1 files changed, 0 insertions, 21 deletions
diff --git a/resources/views/modules/media/tab.php b/resources/views/modules/media/tab.php
deleted file mode 100644
index 5b4421070e..0000000000
--- a/resources/views/modules/media/tab.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php use Fisharebest\Webtrees\Functions\FunctionsPrintFacts; ?>
-<?php use Fisharebest\Webtrees\I18N; ?>
-
-<div class="wt-media-tab py-4">
- <table class="table wt-facts-table">
- <?php foreach ($facts as $fact) : ?>
- <?php FunctionsPrintFacts::printMainMedia($fact, 1) ?>
- <?php FunctionsPrintFacts::printMainMedia($fact, 2) ?>
- <?php FunctionsPrintFacts::printMainMedia($fact, 3) ?>
- <?php FunctionsPrintFacts::printMainMedia($fact, 4) ?>
- <?php endforeach ?>
-
- <?php if (empty($facts)) : ?>
- <tr>
- <td colspan="2">
- <?= I18N::translate('There are no media objects for this individual.') ?>
- </td>
- </tr>
- <?php endif ?>
- </table>
-</div>