![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /var/www/html/webtrees/resources/views/admin/ |
Upload File : |
<?php declare(strict_types=1); use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; use Fisharebest\Webtrees\Http\RequestHandlers\ImportThumbnailsData; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\View; /** * @var string $title */ ?> <?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?> <h1><?= $title ?></h1> <p> <?= /* I18N: "thumbs" is fixed text. Do not change it. */ I18N::translate('In webtrees version 1, you could add custom thumbnails to media objects by creating files in the “thumbs” folders.') ?> <br> <?= I18N::translate('In webtrees version 2, custom thumbnails are stored as a second media file in the same media object.') ?> <br> <?= I18N::translate('If the thumbnail image is the same as the original image, it is no longer needed and you should delete it.')?> <?= I18N::translate('If the thumbnail image is a custom image, you should add it to the media object.') ?> </p> <table class="table table-bordered table-sm table-hover wt-fix-table datatables d-none" <?= view('lists/datatables-attributes') ?> data-ajax="<?= e(json_encode(['url' => route(ImportThumbnailsData::class)], JSON_THROW_ON_ERROR)) ?>" data-server-side="true" data-sort="false" > <caption class="visually-hidden"> <?= I18N::translate('Media objects') ?> </caption> <thead class="thead-dark"> <tr> <th data-sortable="false"><?= I18N::translate('Thumbnail image') ?></th> <th data-sortable="false"><?= I18N::translate('Media file') ?></th> <th data-sortable="false"><?= I18N::translate('Media object') ?></th> <th data-sortable="false"><?= I18N::translate('Comparison') ?></th> <th data-sortable="false"><?= I18N::translate('Action') ?></th> </tr> </thead> </table> <?php View::push('javascript') ?> <script> 'use strict'; // If we click on a button, post the request and reload the table document.querySelector(".wt-fix-table").onclick = function (event) { let element = event.target; if (element.classList.contains("wt-fix-button")) { event.stopPropagation(); event.preventDefault(); if (!element.dataset.confirm || confirm(element.dataset.confirm)) { let formData = new FormData(element.form); formData.append('action', element.dataset.action); $.ajax({ data: formData, method: element.form.method, url: element.form.action, async: false, contentType: false, processData: false, complete: function() { $(".wt-fix-table").DataTable().ajax.reload(null, false); } }); } } }; </script> <?php View::endpush() ?>