summaryrefslogtreecommitdiff
path: root/resources/views/modules/google-maps/config.phtml
blob: 6750ac8c529f01f8c7177e7b79e9886b09272256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php

use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
use Fisharebest\Webtrees\Http\RequestHandlers\ModulesAllPage;
use Fisharebest\Webtrees\I18N;

/**
 * @var string $api_key
 * @var string $title
 */

?>

<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), route(ModulesAllPage::class) => I18N::translate('Modules'), $title]]) ?>

<h1><?= $title ?></h1>

<form method="post">
    <?= csrf_field() ?>

    <div class="row form-group">
        <label class="col-sm-3 col-form-label" for="api_key">
            <?= I18N::translate('API key') ?>
        </label>
        <div class="col-sm-9">
            <input
                    class="form-control"
                    dir="ltr"
                    id="api_key"
                    maxlength="255"
                    name="api_key"
                    type="text"
                    value="<?= e($api_key) ?>"
            >
            <div class="form-text">
                <?= I18N::translate('To use this service, you need an API key.') ?>
                <br>
                <?= I18N::translate('For more information, see %s.', '<a href="https://developers.google.com/maps/documentation/javascript/get-api-key">developers.google.com/maps/documentation/javascript/get-api-key</a>') ?>
            </div>
        </div>
    </div>

    <button type="submit" class="btn btn-primary">
        <?= I18N::translate('save') ?>
    </button>

    <a href="<?= route(ControlPanel::class) ?>" class="btn btn-secondary">
        <?= view('icons/cancel') ?>
        <?= I18N::translate('cancel') ?>
    </a>
</form>