xref: /webtrees/resources/views/search-replace-page.phtml (revision dc270d8cc5085ed29f3f419c99734ddd0960c624)
1f5402f3dSGreg Roach<?php
2f5402f3dSGreg Roach
3f5402f3dSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\SearchReplaceAction;
4f5402f3dSGreg Roachuse Fisharebest\Webtrees\I18N;
5*dc270d8cSGreg Roachuse Fisharebest\Webtrees\Tree;
6*dc270d8cSGreg Roach
7*dc270d8cSGreg Roach/**
8*dc270d8cSGreg Roach * @var string $context
9*dc270d8cSGreg Roach * @var string $replace
10*dc270d8cSGreg Roach * @var string $search
11*dc270d8cSGreg Roach * @var string $title
12*dc270d8cSGreg Roach * @var Tree $tree
13*dc270d8cSGreg Roach */
14f5402f3dSGreg Roach
15f5402f3dSGreg Roach?>
16dd6b2bfcSGreg Roach
17dd6b2bfcSGreg Roach<h2 class="wt-page-title">
18dd6b2bfcSGreg Roach    <?= $title ?>
19dd6b2bfcSGreg Roach</h2>
20dd6b2bfcSGreg Roach
21f5402f3dSGreg Roach<form method="post" action="<?= e(route(SearchReplaceAction::class, ['tree' => $tree->name()])) ?>" class="wt-page-options wt-page-options-ancestors-chart hidden-print">
22dd6b2bfcSGreg Roach    <?= csrf_field() ?>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach    <div class="row form-group">
25dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="search">
26dd6b2bfcSGreg Roach            <?= I18N::translate('Search for') ?>
27dd6b2bfcSGreg Roach        </label>
28dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
290d2905f7SGreg Roach            <input class="form-control" id="search" name="search" value="<?= e($search) ?>" type="text" autofocus>
30dd6b2bfcSGreg Roach        </div>
31dd6b2bfcSGreg Roach    </div>
32dd6b2bfcSGreg Roach
33dd6b2bfcSGreg Roach    <div class="row form-group">
34dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="replace">
35dd6b2bfcSGreg Roach            <?= I18N::translate('Replace with') ?>
36dd6b2bfcSGreg Roach        </label>
37dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
380d2905f7SGreg Roach            <input class="form-control" id="replace" name="replace" value="<?= e($replace) ?>" type="text">
39dd6b2bfcSGreg Roach        </div>
40dd6b2bfcSGreg Roach    </div>
41dd6b2bfcSGreg Roach
42dd6b2bfcSGreg Roach    <div class="row form-group">
43dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label">
44dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('Search') ?>
45dd6b2bfcSGreg Roach        </label>
46dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
47b6c326d8SGreg Roach            <?= view('components/radios-inline', ['name' => 'context', 'options' => ['all' => I18N::translate('Entire record'), 'name' => I18N::translate('Names'), 'place' => I18N::translate('Places')], 'selected' => $context]) ?>
48dd6b2bfcSGreg Roach        </div>
49dd6b2bfcSGreg Roach    </div>
50dd6b2bfcSGreg Roach    <div class="row form-group">
51dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label"></label>
52dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
53dd6b2bfcSGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('replace') ?>">
54dd6b2bfcSGreg Roach        </div>
55dd6b2bfcSGreg Roach    </div>
56dd6b2bfcSGreg Roach</form>
57