xref: /webtrees/resources/views/modules/clippings/download.phtml (revision 9e3c2cf9009c4c2140f50ddfc80b91f2f82cdce5)
171378461SGreg Roach<?php
271378461SGreg Roach
371378461SGreg Roachuse Fisharebest\Webtrees\I18N;
47c2c99faSGreg Roachuse Fisharebest\Webtrees\Tree;
57c2c99faSGreg Roach
67c2c99faSGreg Roach/**
716ecfcafSGreg Roach * @var array<string> $download_filenames
87c2c99faSGreg Roach * @var string        $module
97c2c99faSGreg Roach * @var string        $title
107c2c99faSGreg Roach * @var Tree          $tree
1116ecfcafSGreg Roach * @var bool          $zip_available
127c2c99faSGreg Roach */
1371378461SGreg Roach
1471378461SGreg Roach?>
15dd6b2bfcSGreg Roach
16dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
17dd6b2bfcSGreg Roach
18f95e0480SGreg 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">
19f95e0480SGreg Roach    <?= csrf_field() ?>
20dd6b2bfcSGreg Roach
21*9e3c2cf9SGreg 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
30*9e3c2cf9SGreg 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>
44dd6b2bfcSGreg Roach</form>
45