1ff995987SGreg Roach<?php 2ff995987SGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5ff995987SGreg Roachuse Fisharebest\Webtrees\Auth; 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; 114991f205SGreg Roachuse Fisharebest\Webtrees\Services\LinkedRecordService; 12455a30feSGreg Roachuse Fisharebest\Webtrees\Tree; 1306a438b4SGreg Roachuse Illuminate\Support\Collection; 14f7cf8a15SGreg Roachuse League\Flysystem\FilesystemOperator; 1506a438b4SGreg Roach 1606a438b4SGreg Roach/** 1706a438b4SGreg Roach * @var int $count 18f7cf8a15SGreg Roach * @var FilesystemOperator $data_filesystem 1906a438b4SGreg Roach * @var string $filter 2006a438b4SGreg Roach * @var string $folder 2106a438b4SGreg Roach * @var array<string> $folders 2206a438b4SGreg Roach * @var string $format 2306a438b4SGreg Roach * @var array<string> $formats 244991f205SGreg Roach * @var LinkedRecordService $linked_record_service 25455a30feSGreg Roach * @var int $max 2636779af1SGreg Roach * @var Collection<int,Media> $media_objects 2706a438b4SGreg Roach * @var ModuleListInterface $module 2806a438b4SGreg Roach * @var int $page 2906a438b4SGreg Roach * @var int $pages 3006a438b4SGreg Roach * @var string $subdirs 3106a438b4SGreg Roach * @var string $title 32455a30feSGreg Roach * @var Tree $tree 3306a438b4SGreg Roach */ 34ff995987SGreg Roach 35ff995987SGreg Roach?> 36ff995987SGreg Roach 37ff995987SGreg Roach<h2 class="wt-page-title"> 38ff995987SGreg Roach <?= $title ?> 39ff995987SGreg Roach</h2> 40ff995987SGreg Roach 41ff995987SGreg Roach<form method="post" class="wt-page-options wt-page-options-media-list d-print-none"> 429e3c2cf9SGreg Roach <div class="row"> 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 599e3c2cf9SGreg Roach <div class="row"> 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 739e3c2cf9SGreg Roach <div class="row"> 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> 9281443e3cSGreg Roach 9381443e3cSGreg Roach <?= csrf_field() ?> 94ff995987SGreg Roach</form> 95ff995987SGreg Roach 96ff995987SGreg Roach<div class="wt-page-content"> 97ff995987SGreg Roach <p class="text-center mt-4"><?= I18N::translate('Media objects found') ?> <?= I18N::number($count) ?></p> 986e9b2106SThomas Karcher <?php if ($media_objects->isNotEmpty()) : ?> 9906a438b4SGreg Roach <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?> 100ff995987SGreg Roach 10161275c55SJonathan Jaubart <div class="row row-cols-1 row-cols-sm-2 row-cols-lg-3 g-4"> 102ff995987SGreg Roach <?php foreach ($media_objects as $n => $media_object) : ?> 10361275c55SJonathan Jaubart <div class="col"> 10461275c55SJonathan Jaubart <div class="card h-100"> 105ff995987SGreg Roach <div class="card-header"> 106ff995987SGreg Roach <h4 class="card-title"> 107ff995987SGreg Roach <a href="<?= e($media_object->url()) ?>"><?= $media_object->fullName() ?></a> 108ff995987SGreg Roach </h4> 109ff995987SGreg Roach </div> 110ff995987SGreg Roach <div class="card-body"> 111ff995987SGreg Roach <?php foreach ($media_object->mediaFiles() as $media_file) : ?> 112ff995987SGreg Roach <?= $media_file->displayImage(300, 200, 'contain', ['class' => 'img-fluid']) ?> 113ff995987SGreg Roach <?php endforeach ?> 114ff995987SGreg Roach 115455a30feSGreg Roach <?php $media_file = $media_object->mediaFiles()->first() ?> 116455a30feSGreg Roach <?php if ($media_file instanceof MediaFile) : ?> 117ff995987SGreg Roach <p class="card-text"> 118ff995987SGreg Roach <?php 119ff995987SGreg Roach // Show file details 120ff995987SGreg Roach $mediatype = $media_file->type(); 121455a30feSGreg Roach if ($media_file->type() !== '') { 122455a30feSGreg Roach $element = Registry::elementFactory()->make('OBJE:FILE:FORM:TYPE'); 123455a30feSGreg Roach echo $element->labelValue($media_file->type(), $media_object->tree()); 124ff995987SGreg Roach } 125b315f3e1SGreg Roach 126b315f3e1SGreg Roach foreach ($media_object->facts(['SOUR']) as $fact) { 127b315f3e1SGreg Roach echo view('fact-gedcom-fields', ['gedcom' => $fact->gedcom(), 'parent' => $media_object->tag(), 'tree' => $tree]); 128b315f3e1SGreg Roach } 129b315f3e1SGreg Roach 130b315f3e1SGreg Roach foreach ($media_object->facts(['NOTE']) as $fact) { 131b315f3e1SGreg Roach echo view('fact-gedcom-fields', ['gedcom' => $fact->gedcom(), 'parent' => $media_object->tag(), 'tree' => $tree]); 132b315f3e1SGreg Roach } 133b315f3e1SGreg Roach 134ff995987SGreg Roach if ($media_file->isExternal()) { 135455a30feSGreg Roach echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree()); 136ff995987SGreg Roach } elseif ($media_file->fileExists($data_filesystem)) { 137ff995987SGreg Roach if (Auth::isEditor($tree)) { 138455a30feSGreg Roach echo Registry::elementFactory()->make('OBJE:FILE')->labelValue($media_file->filename(), $media_object->tree()); 139cfb84ff6SGreg Roach 14069cdf014SGreg Roach foreach ($media_file->attributes($data_filesystem) as $label => $value) { 14169cdf014SGreg Roach $label = '<span class="label">' . $label . '</span>'; 14269cdf014SGreg Roach $value = '<span class="value">' . $value . '</span>'; 14369cdf014SGreg Roach 14469cdf014SGreg Roach echo '<div>' . I18N::translate(/* I18N: e.g. "Occupation: farmer" */ '%1$s: %2$s', $label, $value) . '</div>'; 145ff995987SGreg Roach } 146ff995987SGreg Roach } 147ff995987SGreg Roach } else { 1480cfb9b8cSGreg 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>'; 149ff995987SGreg Roach } 150ff995987SGreg Roach ?> 151ff995987SGreg Roach </p> 152455a30feSGreg Roach <?php endif ?> 153ff995987SGreg Roach </div> 154ff995987SGreg Roach <div class="card-footer"> 1554991f205SGreg Roach <?php foreach ($linked_record_service->linkedIndividuals($media_object) as $record) : ?> 156ff995987SGreg Roach <?= view('icons/individual') ?> 157ff995987SGreg Roach <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a> 158ff995987SGreg Roach <br> 159ff995987SGreg Roach <?php endforeach ?> 160ff995987SGreg Roach 1614991f205SGreg Roach <?php foreach ($linked_record_service->linkedFamilies($media_object) as $record) : ?> 162ff995987SGreg Roach <?= view('icons/family') ?> 163ff995987SGreg Roach <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a> 164ff995987SGreg Roach <br> 165ff995987SGreg Roach <?php endforeach ?> 166ff995987SGreg Roach 1674991f205SGreg Roach <?php foreach ($linked_record_service->linkedSources($media_object) as $record) : ?> 168ff995987SGreg Roach <?= view('icons/source') ?> 169ff995987SGreg Roach <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a> 170ff995987SGreg Roach <br> 171ff995987SGreg Roach <?php endforeach ?> 172b90d19c1SRichard Cissée 173b90d19c1SRichard Cissée <?php foreach ($linked_record_service->linkedLocations($media_object) as $record) : ?> 174b90d19c1SRichard Cissée <?= view('icons/location') ?> 175b90d19c1SRichard Cissée <a href="<?= e($record->url()) ?>"><?= $record->fullName() ?></a> 176b90d19c1SRichard Cissée <br> 177b90d19c1SRichard Cissée <?php endforeach ?> 178ff995987SGreg Roach </div> 179ff995987SGreg Roach </div> 180ff995987SGreg Roach </div> 181ff995987SGreg Roach <?php endforeach ?> 182ff995987SGreg Roach </div> 183ff995987SGreg Roach 18406a438b4SGreg Roach <?= view('modules/media-list/pagination', ['module' => $module, 'page' => $page, 'pages' => $pages, 'folder' => $folder, 'subdirs' => $subdirs, 'filter' => $filter, 'format' => $format, 'max' => $max, 'tree' => $tree]) ?> 185ff995987SGreg Roach <?php endif ?> 186ff995987SGreg Roach</div> 187