xref: /webtrees/resources/views/modules/google-analytics/form.phtml (revision f9f6fffde9a4ddea74e52e0f4c13cde4ec13f3a4)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
5d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
6d70512abSGreg Roach
7d70512abSGreg Roach?>
88e5c5efeSGreg Roach
99e3c2cf9SGreg Roach<div class="row mb-3">
108e5c5efeSGreg Roach    <label for="GOOGLE_ANALYTICS_ID" class="col-sm-3 col-form-label">
118e5c5efeSGreg Roach        <?= /* I18N: A configuration setting */ I18N::translate('Site identification code') ?>
12315eb316SGreg Roach        <span class="visually-hidden">Google Analytics</span>
138e5c5efeSGreg Roach    </label>
148e5c5efeSGreg Roach    <div class="col-sm-9">
15*f9f6fffdSGreg Roach        <input type="text" class="form-control" id="GOOGLE_ANALYTICS_ID" name="GOOGLE_ANALYTICS_ID" value="<?= e($GOOGLE_ANALYTICS_ID ?? '') ?>" placeholder="UA-12345-6 / G-1A2B3C4D" maxlength="255" pattern="UA-[0-9]+-[0-9]+|G-[0-9A-Z]+">
168e5c5efeSGreg Roach    </div>
178e5c5efeSGreg Roach</div>
18