11e653452SGreg Roach<?php 21e653452SGreg Roach 31e653452SGreg Roachuse Fisharebest\Webtrees\I18N; 41e653452SGreg Roachuse Fisharebest\Webtrees\Webtrees; 51e653452SGreg Roach 61e653452SGreg Roach?> 7dd6b2bfcSGreg Roach 8dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => $breadcrumbs]) ?> 9dd6b2bfcSGreg Roach 10dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 11dd6b2bfcSGreg Roach 12dd6b2bfcSGreg Roach<table class="table table-bordered table-striped table-sm table-hover"> 13dd6b2bfcSGreg Roach <thead class="thead-dark"> 14dd6b2bfcSGreg Roach <tr> 15dd6b2bfcSGreg Roach <th><?= I18N::translate('Place') ?></th> 16dd6b2bfcSGreg Roach <th><?= I18N::translate('Latitude') ?></th> 17dd6b2bfcSGreg Roach <th><?= I18N::translate('Longitude') ?></th> 18e340fe65SGreg Roach <!-- 19dd6b2bfcSGreg Roach <th><?= I18N::translate('Flag') ?> </th> 20e340fe65SGreg Roach --> 21dd6b2bfcSGreg Roach <th><?= I18N::translate('Edit') ?></th> 22dd6b2bfcSGreg Roach <th><?= I18N::translate('Delete') ?></th> 23dd6b2bfcSGreg Roach </tr> 24dd6b2bfcSGreg Roach </thead> 25dd6b2bfcSGreg Roach 267039fd97SGreg Roach <tbody> 27dd6b2bfcSGreg Roach <?php foreach ($placelist as $place) : ?> 28dd6b2bfcSGreg Roach <tr> 29dd6b2bfcSGreg Roach <th scope="row"> 30dd6b2bfcSGreg Roach <a href="<?= e(route('map-data', ['parent_id' => $place->pl_id])) ?>"> 31dd6b2bfcSGreg Roach <?= e($place->pl_place) ?> 32dd6b2bfcSGreg Roach <span class="badge badge-pill badge-<?= $place->badge ?>"> 33dd6b2bfcSGreg Roach <?= I18N::number($place->child_count) ?> 34dd6b2bfcSGreg Roach </span> 35dd6b2bfcSGreg Roach </a> 36dd6b2bfcSGreg Roach </th> 37d993d560SGreg Roach 380e7a2d23SGreg Roach <td dir="ltr"> 39*35661a57SGreg Roach <?php if ((string) $place->pl_lati === '') : ?> 40d993d560SGreg Roach <?= view('icons/warning') ?> 41d993d560SGreg Roach <?php else : ?> 42d993d560SGreg Roach <?= strtr($place->pl_lati, ['N' => '', 'S' => '-', ',' => '.']) ?> 43d993d560SGreg Roach <?php endif ?> 44dd6b2bfcSGreg Roach </td> 45d993d560SGreg Roach 460e7a2d23SGreg Roach <td dir="ltr"> 47*35661a57SGreg Roach <?php if ((string) $place->pl_long === '') : ?> 48d993d560SGreg Roach <?= view('icons/warning') ?> 49d993d560SGreg Roach <?php else : ?> 50d993d560SGreg Roach <?= strtr($place->pl_long, ['E' => '', 'W' => '-', ',' => '.']) ?> 51d993d560SGreg Roach <?php endif ?> 52dd6b2bfcSGreg Roach </td> 53d993d560SGreg Roach 54e340fe65SGreg Roach <!-- 55dd6b2bfcSGreg Roach <td> 568d0ebef0SGreg Roach <?php if (is_file(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon)) : ?> 57b2c011d7SGreg Roach <img src="<?= e(Webtrees::MODULES_PATH . 'openstreetmap/' . $place->pl_icon) ?>" width="25" height="15" alt="<?= I18N::translate('Flag of %s', $place->pl_place) ?>"> 58dd6b2bfcSGreg Roach <?php endif ?> 59dd6b2bfcSGreg Roach </td> 60e340fe65SGreg Roach --> 61d993d560SGreg Roach 62dd6b2bfcSGreg Roach <td> 6339b853a7SGreg Roach <a class="btn btn-primary" href="<?= e(route('map-data-edit', ['place_id' => $place->pl_id, 'parent_id' => $place->pl_parent_id])) ?>" title="<?= I18N::translate('Edit') ?>"> 6439b853a7SGreg Roach <?= view('icons/edit') ?> 6539b853a7SGreg Roach <span class="sr-only"> 6639b853a7SGreg Roach <?= I18N::translate('Edit') ?> 6739b853a7SGreg Roach </span> 6839b853a7SGreg Roach </a> 69dd6b2bfcSGreg Roach </td> 70d993d560SGreg Roach 71dd6b2bfcSGreg Roach <td> 72dd6b2bfcSGreg Roach <?php if ($place->child_count === 0) : ?> 7383615acfSGreg Roach <form method="post" action="<?= e(route('map-data-delete', ['parent_id' => $parent_id, 'place_id' => $place->pl_id])) ?>" 74dd6b2bfcSGreg Roach data-confirm="<?= I18N::translate('Remove this location?') ?>" 75dd6b2bfcSGreg Roach onsubmit="return confirm(this.dataset.confirm)"> 76dd6b2bfcSGreg Roach <?= csrf_field() ?> 776a83cfe8SGreg Roach <button type="submit" class="btn btn-danger" aria-label="<?= I18N::translate('delete') ?>"> 786a83cfe8SGreg Roach <?= view('icons/delete') ?> 79dd6b2bfcSGreg Roach </button> 80dd6b2bfcSGreg Roach </form> 81dd6b2bfcSGreg Roach <?php else : ?> 82dd6b2bfcSGreg Roach <button type="button" class="btn btn-danger" disabled> 83d993d560SGreg Roach <?= view('icons/delete') ?> 84dd6b2bfcSGreg Roach </button> 85dd6b2bfcSGreg Roach <?php endif ?> 86dd6b2bfcSGreg Roach </td> 87dd6b2bfcSGreg Roach </tr> 88dd6b2bfcSGreg Roach <?php endforeach ?> 89dd6b2bfcSGreg Roach </tbody> 907039fd97SGreg Roach 91dd6b2bfcSGreg Roach <tfoot> 92dd6b2bfcSGreg Roach <tr> 93dd6b2bfcSGreg Roach <td colspan="7"> 9456a34df1SGreg Roach <a class="btn btn-primary" href="<?= e(route('map-data-edit', ['place_id' => '0', 'parent_id' => $parent_id])) ?>"> 95d993d560SGreg Roach <?= view('icons/add') ?> 96dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 97dd6b2bfcSGreg Roach I18N::translate('add place') ?> 98dd6b2bfcSGreg Roach </a> 99dd6b2bfcSGreg Roach <button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenuButton" 100dd6b2bfcSGreg Roach data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> 101d993d560SGreg Roach <?= view('icons/download') ?> 102dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 103dd6b2bfcSGreg Roach I18N::translate('export file') ?> 104dd6b2bfcSGreg Roach </button> 105dd6b2bfcSGreg Roach <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> 106dd6b2bfcSGreg Roach <a class="dropdown-item" href="<?= e(route('locations-export', ['parent_id' => $parent_id, 'format' => 'csv'])) ?>"> 107dd6b2bfcSGreg Roach csv 108dd6b2bfcSGreg Roach </a> 109dd6b2bfcSGreg Roach <a class="dropdown-item" href="<?= e(route('locations-export', ['parent_id' => $parent_id, 'format' => 'geojson'])) ?>"> 110dd6b2bfcSGreg Roach geoJSON 111dd6b2bfcSGreg Roach </a> 112dd6b2bfcSGreg Roach </div> 113dd6b2bfcSGreg Roach <a class="btn btn-primary" href="<?= e(route('locations-import', ['parent_id' => $parent_id])) ?>"> 114d993d560SGreg Roach <?= view('icons/upload') ?> 115dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 116dd6b2bfcSGreg Roach I18N::translate('import file') ?> 117dd6b2bfcSGreg Roach </a> 118dd6b2bfcSGreg Roach </td> 119dd6b2bfcSGreg Roach </tr> 120dd6b2bfcSGreg Roach </tfoot> 121dd6b2bfcSGreg Roach</table> 122dd6b2bfcSGreg Roach 12383615acfSGreg Roach<form method="post" action="<?= e(route('locations-import-from-tree')) ?>"> 124dd6b2bfcSGreg Roach <?= csrf_field() ?> 125dd6b2bfcSGreg Roach 126dd6b2bfcSGreg Roach <div class="form-group row"> 1279022ab66SGreg Roach <label class="form-control-plaintext col-sm-4" for="tree"> 128dd6b2bfcSGreg Roach <?= I18N::translate('Import all places from a family tree') ?> 129dd6b2bfcSGreg Roach </label> 130dd6b2bfcSGreg Roach <div class="col-sm-6"> 1311e653452SGreg Roach <?= view('components/select', ['name' => 'ged', 'selected' => '', 'options' => $tree_titles]) ?> 132dd6b2bfcSGreg Roach </div> 133dd6b2bfcSGreg Roach <div class="col-sm-2"> 134dd6b2bfcSGreg Roach <button type="submit" class="btn btn-primary"> 135dd6b2bfcSGreg Roach <?= view('icons/upload') ?> 136dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ 137dd6b2bfcSGreg Roach I18N::translate('import') ?> 138dd6b2bfcSGreg Roach </button> 139dd6b2bfcSGreg Roach </div> 140dd6b2bfcSGreg Roach </div> 141dd6b2bfcSGreg Roach</form> 142