xref: /webtrees/resources/views/modules/media-list/page.phtml (revision 89950eb4a8b302be0915d2ba9885d70db994abd6)
1ff995987SGreg Roach<?php
2ff995987SGreg Roach
3ff995987SGreg Roachuse Fisharebest\Webtrees\Auth;
4ff995987SGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrint;
5ff995987SGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
6ff995987SGreg Roachuse Fisharebest\Webtrees\I18N;
706a438b4SGreg Roachuse Fisharebest\Webtrees\Media;
8455a30feSGreg Roachuse Fisharebest\Webtrees\MediaFile;
906a438b4SGreg Roachuse Fisharebest\Webtrees\Module\ModuleListInterface;
10455a30feSGreg Roachuse Fisharebest\Webtrees\Registry;
11455a30feSGreg Roachuse Fisharebest\Webtrees\Tree;
1206a438b4SGreg Roachuse Illuminate\Support\Collection;
13f7cf8a15SGreg Roachuse League\Flysystem\FilesystemOperator;
1406a438b4SGreg Roach
1506a438b4SGreg Roach/**
1606a438b4SGreg Roach * @var int                 $count
17f7cf8a15SGreg Roach * @var FilesystemOperator $data_filesystem
1806a438b4SGreg Roach * @var string              $filter
1906a438b4SGreg Roach * @var string              $folder
2006a438b4SGreg Roach * @var array<string>       $folders
2106a438b4SGreg Roach * @var string              $format
2206a438b4SGreg Roach * @var array<string>       $formats
23455a30feSGreg Roach * @var int                 $max
2406a438b4SGreg Roach * @var Collection<Media>   $media_objects
2506a438b4SGreg Roach * @var ModuleListInterface $module
2606a438b4SGreg Roach * @var int                 $page
2706a438b4SGreg Roach * @var int                 $pages
2806a438b4SGreg Roach * @var string              $subdirs
2906a438b4SGreg Roach * @var string              $title
30455a30feSGreg Roach * @var Tree                $tree
3106a438b4SGreg Roach */
32ff995987SGreg Roach
33ff995987SGreg Roach?>
34ff995987SGreg Roach
35ff995987SGreg Roach<h2 class="wt-page-title">
36ff995987SGreg Roach    <?= $title ?>
37ff995987SGreg Roach</h2>
38ff995987SGreg Roach
39ff995987SGreg Roach<form method="post" class="wt-page-options wt-page-options-media-list d-print-none">
40ff995987SGreg Roach    <?= csrf_field() ?>
41ff995987SGreg Roach
42*89950eb4SGreg Roach    <div class="row form-group">
43ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="folder">
44ff995987SGreg Roach            <?= I18N::translate('Folder') ?>
45ff995987SGreg Roach        </label>
46ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
47ff995987SGreg Roach            <?= view('components/select', ['name' => 'folder', 'selected' => $folder, 'options' => $folders]) ?>
48ff995987SGreg Roach            <?= view('components/checkbox-inline', ['label' => /* I18N: Label for check-box */ I18N::translate('Include subfolders'), 'name' => 'subdirs', 'checked' => $subdirs === '1']) ?>
49ff995987SGreg Roach        </div>
50ff995987SGreg Roach
51ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="max">
52ff995987SGreg Roach            <?= I18N::translate('Media objects per page') ?>
53ff995987SGreg Roach        </label>
54ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
55f91b18ebSGreg Roach            <?= view('components/select-number', ['name' => 'max', 'selected' => $max, 'options' => [10, 20, 30, 40, 50, 75, 100, 150, 200]]) ?>
56ff995987SGreg Roach        </div>
57ff995987SGreg Roach    </div>
58ff995987SGreg Roach
59*89950eb4SGreg Roach    <div class="row form-group">
6006a438b4SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="format">
61ff995987SGreg Roach            <?= I18N::translate('Type') ?>
62ff995987SGreg Roach        </label>
6306a438b4SGreg Roach
64ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
6506a438b4SGreg Roach            <?= view('components/select', ['name' => 'format', 'id' => 'format', 'selected' => $format, 'options' => ['' => ''] + $formats]) ?>
66ff995987SGreg Roach        </div>
67ff995987SGreg Roach
6806a438b4SGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label"></div>
6906a438b4SGreg Roach
7006a438b4SGreg Roach        <div class="col-sm-3 wt-page-options-value"></div>
71ff995987SGreg Roach    </div>
72ff995987SGreg Roach
73*89950eb4SGreg Roach    <div class="row form-group">
74ff995987SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="filter">
75ff995987SGreg Roach            <?= I18N::translate('Search filters') ?>
76ff995987SGreg Roach        </label>
77ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
78ff995987SGreg Roach            <input type="text" class="form-control" name="filter" id="filter" value="<?= e($filter) ?>">
79ff995987SGreg Roach        </div>
80ff995987SGreg Roach
8106a438b4SGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label"></div>
8206a438b4SGreg Roach
83ff995987SGreg Roach        <div class="col-sm-3 wt-page-options-value">
8406a438b4SGreg Roach            <button type="submit" name="go" value="1" class="btn btn-primary">
85ff995987SGreg Roach                <?= /* I18N: A button label. */ I18N::translate('search') ?>
86ff995987SGreg Roach            </button>
8706a438b4SGreg Roach            <a class="btn btn-secondary" href="<?= e($module->listUrl($tree)) ?>">
88ff995987SGreg Roach                <?= /* I18N: A button label. */ I18N::translate('reset') ?>
89ff995987SGreg Roach            </a>
90ff995987SGreg Roach        </div>
91ff995987SGreg Roach    </div>
92ff995987SGreg Roach</form>
93ff995987SGreg Roach
94ff995987SGreg Roach<div class="wt-page-content">
95ff995987SGreg Roach    <p class="text-center mt-4"><?= I18N::translate('Media objects found') ?> <?= I18N::number($count) ?></p>
966e9b2106SThomas Karcher    <?php if ($media_objects->isNotEmpty()) : ?>
97ff995987SGreg Roach
9806a438b4SGreg Roach        <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?>
99ff995987SGreg Roach
10061275c55SJonathan Jaubart        <div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 g-4">
101ff995987SGreg Roach            <?php foreach ($media_objects as $n => $media_object) : ?>
10261275c55SJonathan Jaubart                <div class="col">
10361275c55SJonathan Jaubart                    <div class="card h-100">
104ff995987SGreg Roach                        <div class="card-header">
105ff995987SGreg Roach                            <h4 class="card-title">
106ff995987SGreg Roach                                <a href="<?= e($media_object->url()) ?>"><?= $media_object->fullName() ?></a>
107ff995987SGreg Roach                            </h4>
108ff995987SGreg Roach                        </div>
109ff995987SGreg Roach                        <div class="card-body">
110ff995987SGreg Roach                            <?php foreach ($media_object->mediaFiles() as $media_file) : ?>
111ff995987SGreg Roach                                <?= $media_file->displayImage(300, 200, 'contain', ['class' => 'img-fluid']) ?>
112ff995987SGreg Roach                            <?php endforeach ?>
113ff995987SGreg Roach
114455a30feSGreg Roach                            <?php $media_file = $media_object->mediaFiles()->first() ?>
115455a30feSGreg Roach                            <?php if ($media_file instanceof MediaFile): ?>
116ff995987SGreg Roach                                <p class="card-text">
117ff995987SGreg Roach                                    <?php
118ff995987SGreg Roach                                    // Show file details
119ff995987SGreg Roach                                    $mediatype = $media_file->type();
120455a30feSGreg Roach                                    if ($media_file->type() !== '') {
121455a30feSGreg Roach                                        $element = Registry::elementFactory()->make('OBJE:FILE:FORM:TYPE');
122455a30feSGreg Roach                                        echo $element->labelValue($media_file->type(), $media_object->tree());
123ff995987SGreg Roach                                    }
124ff995987SGreg Roach                                    echo FunctionsPrintFacts::printFactSources($tree, $media_object->gedcom(), 1);
125ff995987SGreg Roach                                    echo FunctionsPrint::printFactNotes($tree, $media_object->gedcom(), 1);
126ff995987SGreg Roach                                    if ($media_file->isExternal()) {
127455a30feSGreg Roach                                        echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree());
128ff995987SGreg Roach                                    } elseif ($media_file->fileExists($data_filesystem)) {
129455a30feSGreg Roach                                        echo Registry::elementFactory()->make('OBJE:FILE:FORM')->labelValue($media_file->mimeType(), $media_object->tree());
130ff995987SGreg Roach                                        if (Auth::isEditor($tree)) {
131455a30feSGreg Roach                                            echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree());
132ff995987SGreg Roach                                        }
133ff995987SGreg Roach                                        if (Auth::isEditor($tree)) {
13469cdf014SGreg Roach                                            foreach ($media_file->attributes($data_filesystem) as $label => $value) {
13569cdf014SGreg Roach                                                $label = '<span class="label">' . $label . '</span>';
13669cdf014SGreg Roach                                                $value = '<span class="value">' . $value . '</span>';
13769cdf014SGreg Roach
13869cdf014SGreg Roach                                                echo '<div>' . I18N::translate(/* I18N: e.g. "Occupation: farmer" */ '%1$s: %2$s', $label, $value) . '</div>';
139ff995987SGreg Roach                                            }
140ff995987SGreg Roach                                        }
141ff995987SGreg Roach                                    } else {
1420cfb9b8cSGreg Roach                                        echo '<p class="alert alert-danger">', /* I18N: %s is a filename */ I18N::translate('The file “%s” does not exist.', e($media_file->filename())), '</p>';
143ff995987SGreg Roach                                    }
144ff995987SGreg Roach                                    ?>
145ff995987SGreg Roach                                </p>
146455a30feSGreg Roach                            <?php endif ?>
147ff995987SGreg Roach                        </div>
148ff995987SGreg Roach                        <div class="card-footer">
149ff995987SGreg Roach                            <?php foreach ($media_object->linkedIndividuals('OBJE') as $record) : ?>
150ff995987SGreg Roach                                <?= view('icons/individual') ?>
151ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
152ff995987SGreg Roach                                <br>
153ff995987SGreg Roach                            <?php endforeach ?>
154ff995987SGreg Roach
155ff995987SGreg Roach                            <?php foreach ($media_object->linkedFamilies('OBJE') as $record) : ?>
156ff995987SGreg Roach                                <?= view('icons/family') ?>
157ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
158ff995987SGreg Roach                                <br>
159ff995987SGreg Roach                            <?php endforeach ?>
160ff995987SGreg Roach
161ff995987SGreg Roach                            <?php foreach ($media_object->linkedSources('OBJE') as $record) : ?>
162ff995987SGreg Roach                                <?= view('icons/source') ?>
163ff995987SGreg Roach                                <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a>
164ff995987SGreg Roach                                <br>
165ff995987SGreg Roach                            <?php endforeach ?>
166ff995987SGreg Roach                        </div>
167ff995987SGreg Roach                    </div>
168ff995987SGreg Roach                </div>
169ff995987SGreg Roach            <?php endforeach ?>
170ff995987SGreg Roach        </div>
171ff995987SGreg Roach
17206a438b4SGreg Roach        <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?>
173ff995987SGreg Roach    <?php endif ?>
174ff995987SGreg Roach</div>
175