xref: /webtrees/resources/views/modules/clippings/download.phtml (revision 10e0649788c8d7d4974d81c048ca2b225df8f22e)
171378461SGreg Roach<?php
271378461SGreg Roach
3*10e06497SGreg Roachdeclare(strict_types=1);
4*10e06497SGreg Roach
571378461SGreg Roachuse Fisharebest\Webtrees\I18N;
67c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
77c2c99faSGreg Roach
87c2c99faSGreg Roach/**
916ecfcafSGreg Roach * @var array<string> $download_filenames
107c2c99faSGreg Roach * @var string        $module
117c2c99faSGreg Roach * @var string        $title
127c2c99faSGreg Roach * @var Tree          $tree
1316ecfcafSGreg Roach * @var bool          $zip_available
147c2c99faSGreg Roach */
1571378461SGreg Roach
1671378461SGreg Roach?>
17dd6b2bfcSGreg Roach
18dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
19dd6b2bfcSGreg Roach
20f95e0480SGreg Roach<form method="post" action="<?= e(route('module', ['module' => $module, 'action' => 'Download', 'tree' => $tree->name()])) ?>" class="wt-page-options wt-page-options-clippings-download hidden-print">
219e3c2cf9SGreg Roach    <div class="row">
22dd6b2bfcSGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label">
231c6adce8SGreg Roach            <?= I18N::translate('Export preferences') ?>
24dd6b2bfcSGreg Roach        </div>
25dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
2616ecfcafSGreg Roach            <?= view('admin/gedcom-export-options', ['download_filenames' => $download_filenames, 'tree' => $tree, 'zip_available' => $zip_available]) ?>
27dd6b2bfcSGreg Roach        </div>
28dd6b2bfcSGreg Roach    </div>
29dd6b2bfcSGreg Roach
309e3c2cf9SGreg Roach    <div class="row">
31dd6b2bfcSGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label">
32dd6b2bfcSGreg Roach        </div>
33dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
34dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
35d993d560SGreg Roach                <?= view('icons/download') ?>
36dd6b2bfcSGreg Roach                <?= I18N::translate('download') ?>
37dd6b2bfcSGreg Roach            </button>
3877b78a63SRichard Cissée            <a href="<?= e(route('module', ['module' => $module, 'action' => 'Show', 'tree' => $tree->name()])) ?>" class="btn btn-secondary">
39d993d560SGreg Roach                <?= view('icons/cancel') ?>
40dd6b2bfcSGreg Roach                <?= I18N::translate('cancel') ?>
41dd6b2bfcSGreg Roach            </a>
42dd6b2bfcSGreg Roach        </div>
43dd6b2bfcSGreg Roach    </div>
4481443e3cSGreg Roach
4581443e3cSGreg Roach    <?= csrf_field() ?>
46dd6b2bfcSGreg Roach</form>
47