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