xref: /webtrees/resources/views/admin/locations.phtml (revision 8d0ebef0d075981bd943e8256e2c81a3b1e92b4b)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FontAwesome; ?>
3dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
4dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Tree; ?>
5dd6b2bfcSGreg Roach
6dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => $breadcrumbs]) ?>
7dd6b2bfcSGreg Roach
8dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
9dd6b2bfcSGreg Roach
10dd6b2bfcSGreg Roach<table class="table table-bordered table-striped table-sm table-hover">
11dd6b2bfcSGreg Roach    <thead class="thead-dark">
12dd6b2bfcSGreg Roach    <tr>
13dd6b2bfcSGreg Roach        <th><?= I18N::translate('Place') ?></th>
14dd6b2bfcSGreg Roach        <th><?= I18N::translate('Latitude') ?></th>
15dd6b2bfcSGreg Roach        <th><?= I18N::translate('Longitude') ?></th>
16dd6b2bfcSGreg Roach        <th><?= I18N::translate('Zoom level') ?></th>
17dd6b2bfcSGreg Roach        <th><?= I18N::translate('Flag') ?> </th>
18dd6b2bfcSGreg Roach        <th><?= I18N::translate('Edit') ?></th>
19dd6b2bfcSGreg Roach        <th><?= I18N::translate('Delete') ?></th>
20dd6b2bfcSGreg Roach    </tr>
21dd6b2bfcSGreg Roach    </thead>
22dd6b2bfcSGreg Roach    <tbody>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach    <?php foreach ($placelist as $place) : ?>
25dd6b2bfcSGreg Roach        <tr>
26dd6b2bfcSGreg Roach            <th scope="row">
27dd6b2bfcSGreg Roach                <a href="<?= e(route('map-data', ['parent_id' => $place->pl_id])) ?>">
28dd6b2bfcSGreg Roach                    <?= e($place->pl_place) ?>
29dd6b2bfcSGreg Roach                    <span class="badge badge-pill badge-<?= $place->badge ?>">
30dd6b2bfcSGreg Roach                        <?= I18N::number($place->child_count) ?>
31dd6b2bfcSGreg Roach                    </span>
32dd6b2bfcSGreg Roach                </a>
33dd6b2bfcSGreg Roach            </th>
340e7a2d23SGreg Roach            <td dir="ltr">
35dd6b2bfcSGreg Roach                <?= ($place->pl_lati === null) ? FontAwesome::decorativeIcon('warning') : strtr($place->pl_lati, ['N' => '', 'S' => '-', ',' => '.']) ?>
36dd6b2bfcSGreg Roach            </td>
370e7a2d23SGreg Roach            <td dir="ltr">
38dd6b2bfcSGreg Roach                <?= ($place->pl_long === null) ? FontAwesome::decorativeIcon('warning') : strtr($place->pl_long, ['E' => '', 'W' => '-', ',' => '.']) ?>
39dd6b2bfcSGreg Roach            </td>
40dd6b2bfcSGreg Roach            <td>
41dd6b2bfcSGreg Roach                <?= $place->pl_long === null ? FontAwesome::decorativeIcon('warning') : $place->pl_zoom ?>
42dd6b2bfcSGreg Roach            </td>
43dd6b2bfcSGreg Roach            <td>
44*8d0ebef0SGreg Roach                <?php if (is_file(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon)) : ?>
45*8d0ebef0SGreg Roach                    <img src="<?= e(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon) ?>" width="25" height="15" alt="<?= I18N::translate("Flag of %s", $place->pl_place) ?>">
46dd6b2bfcSGreg Roach                <?php endif ?>
47dd6b2bfcSGreg Roach            </td>
48dd6b2bfcSGreg Roach            <td>
49dd6b2bfcSGreg Roach                <?= FontAwesome::linkIcon('edit', I18N::translate('Edit'), ['href' => route('map-data-edit', ['place_id'  => $place->pl_id, 'parent_id' => $place->pl_parent_id]), 'class' => 'btn btn-primary']) ?>
50dd6b2bfcSGreg Roach            </td>
51dd6b2bfcSGreg Roach            <td>
52dd6b2bfcSGreg Roach                <?php if ($place->child_count === 0) : ?>
53dd6b2bfcSGreg Roach                    <form method="POST" action="<?= e(route('map-data-delete', ['parent_id' => $parent_id, 'place_id' => $place->pl_id])) ?>"
54dd6b2bfcSGreg Roach                          data-confirm="<?= I18N::translate('Remove this location?') ?>"
55dd6b2bfcSGreg Roach                          onsubmit="return confirm(this.dataset.confirm)">
56dd6b2bfcSGreg Roach                        <?= csrf_field() ?>
57dd6b2bfcSGreg Roach                        <button type="submit" class="btn btn-danger">
58dd6b2bfcSGreg Roach                            <?= FontAwesome::semanticIcon('delete', I18N::translate('delete')) ?>
59dd6b2bfcSGreg Roach                        </button>
60dd6b2bfcSGreg Roach                    </form>
61dd6b2bfcSGreg Roach                <?php else : ?>
62dd6b2bfcSGreg Roach                    <button type="button" class="btn btn-danger" disabled>
63dd6b2bfcSGreg Roach                        <?= FontAwesome::decorativeIcon('delete') ?>
64dd6b2bfcSGreg Roach                    </button>
65dd6b2bfcSGreg Roach                <?php endif ?>
66dd6b2bfcSGreg Roach            </td>
67dd6b2bfcSGreg Roach        </tr>
68dd6b2bfcSGreg Roach    <?php endforeach ?>
69dd6b2bfcSGreg Roach    </tbody>
70dd6b2bfcSGreg Roach    <tfoot>
71dd6b2bfcSGreg Roach    <tr>
72dd6b2bfcSGreg Roach        <td colspan="7">
73dd6b2bfcSGreg Roach            <a class="btn btn-primary" href="<?= e(route('map-data', ['parent_id' => $parent_id])) ?>">
74dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('add') ?>
75dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
76dd6b2bfcSGreg Roach                I18N::translate('add place') ?>
77dd6b2bfcSGreg Roach            </a>
78dd6b2bfcSGreg Roach            <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton"
79dd6b2bfcSGreg Roach                    data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
80dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('download') ?>
81dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
82dd6b2bfcSGreg Roach                I18N::translate('export file') ?>
83dd6b2bfcSGreg Roach            </button>
84dd6b2bfcSGreg Roach            <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
85dd6b2bfcSGreg Roach                <a class="dropdown-item" href="<?= e(route('locations-export', ['parent_id' => $parent_id, 'format' => 'csv'])) ?>">
86dd6b2bfcSGreg Roach                    csv
87dd6b2bfcSGreg Roach                </a>
88dd6b2bfcSGreg Roach                <a class="dropdown-item" href="<?= e(route('locations-export', ['parent_id' => $parent_id, 'format' => 'geojson'])) ?>">
89dd6b2bfcSGreg Roach                    geoJSON
90dd6b2bfcSGreg Roach                </a>
91dd6b2bfcSGreg Roach            </div>
92dd6b2bfcSGreg Roach            <a class="btn btn-primary" href="<?= e(route('locations-import', ['parent_id' => $parent_id])) ?>">
93dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('upload') ?>
94dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
95dd6b2bfcSGreg Roach                I18N::translate('import file') ?>
96dd6b2bfcSGreg Roach            </a>
97dd6b2bfcSGreg Roach        </td>
98dd6b2bfcSGreg Roach    </tr>
99dd6b2bfcSGreg Roach    </tfoot>
100dd6b2bfcSGreg Roach</table>
101dd6b2bfcSGreg Roach
102dd6b2bfcSGreg Roach<form method="POST" action="<?= e(route('locations-import-from-tree')) ?>">
103dd6b2bfcSGreg Roach    <?= csrf_field() ?>
104dd6b2bfcSGreg Roach
105dd6b2bfcSGreg Roach    <div class="form-group row">
106dd6b2bfcSGreg Roach        <label class="form-control-plaintext col-sm-4" for="ged">
107dd6b2bfcSGreg Roach            <?= I18N::translate('Import all places from a family tree') ?>
108dd6b2bfcSGreg Roach        </label>
109dd6b2bfcSGreg Roach        <div class="col-sm-6">
110dd6b2bfcSGreg Roach            <?= Bootstrap4::select(
111dd6b2bfcSGreg Roach                Tree::getNameList(),
112dd6b2bfcSGreg Roach                '',
113dd6b2bfcSGreg Roach                ['id' => 'ged', 'name' => 'ged']
114dd6b2bfcSGreg Roach            ) ?>
115dd6b2bfcSGreg Roach        </div>
116dd6b2bfcSGreg Roach        <div class="col-sm-2">
117dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
118dd6b2bfcSGreg Roach                <?= view('icons/upload') ?>
119dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */
120dd6b2bfcSGreg Roach                I18N::translate('import') ?>
121dd6b2bfcSGreg Roach            </button>
122dd6b2bfcSGreg Roach        </div>
123dd6b2bfcSGreg Roach    </div>
124dd6b2bfcSGreg Roach</form>
125