1fd303cbfSGreg Roach<?php 2fd303cbfSGreg Roach 3*10e06497SGreg Roachdeclare(strict_types=1); 4*10e06497SGreg Roach 5fd303cbfSGreg Roachuse Fisharebest\Webtrees\I18N; 6fd303cbfSGreg Roachuse Fisharebest\Webtrees\View; 7fd303cbfSGreg Roach 87c2c99faSGreg Roach/** 97c2c99faSGreg Roach * @var string $html 107c2c99faSGreg Roach * @var array<int,string> $languages 117c2c99faSGreg Roach * @var bool $show_timestamp 127c2c99faSGreg Roach * @var array<string,string> $templates 137c2c99faSGreg Roach * @var string $title 147c2c99faSGreg Roach */ 157c2c99faSGreg Roach 16fd303cbfSGreg Roach?> 17dd6b2bfcSGreg Roach 189e3c2cf9SGreg Roach<div class="row mb-3"> 19dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="title"> 20dd6b2bfcSGreg Roach <?= I18N::translate('Title') ?> 21dd6b2bfcSGreg Roach </label> 22dd6b2bfcSGreg Roach <div class="col-sm-9"> 23dd6b2bfcSGreg Roach <input class="form-control" type="text" id="title" name="title" value="<?= e($title) ?>"> 24dd6b2bfcSGreg Roach </div> 25dd6b2bfcSGreg Roach</div> 26dd6b2bfcSGreg Roach 279e3c2cf9SGreg Roach<div class="row mb-3"> 28dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="template"> 29dd6b2bfcSGreg Roach <?= I18N::translate('Templates') ?> 30dd6b2bfcSGreg Roach </label> 31dd6b2bfcSGreg Roach <div class="col-sm-9"> 32c9e11c2aSGreg Roach <?= view('components/select', ['name' => '', 'id' => 'template', 'selected' => '', 'options' => $templates]) ?> 33315eb316SGreg Roach <div class="form-text"> 34dd6b2bfcSGreg Roach <?= I18N::translate('To assist you in getting started with this block, we have created several standard templates. When you select one of these templates, the text area will contain a copy that you can then alter to suit your site’s requirements.') ?> 35315eb316SGreg Roach </div> 36dd6b2bfcSGreg Roach </div> 37dd6b2bfcSGreg Roach</div> 38dd6b2bfcSGreg Roach 399e3c2cf9SGreg Roach<div class="row mb-3"> 40dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="html"> 41dd6b2bfcSGreg Roach <?= I18N::translate('Content') ?> 42dd6b2bfcSGreg Roach </label> 43dd6b2bfcSGreg Roach <div class="col-sm-9"> 44dd6b2bfcSGreg Roach <p> 45dd6b2bfcSGreg Roach <?= I18N::translate('As well as using the toolbar to apply HTML formatting, you can insert database fields which are updated automatically. These special fields are marked with <b>#</b> characters. For example <b>#totalFamilies#</b> will be replaced with the actual number of families in the database. Advanced users may wish to apply CSS classes to their text, so that the formatting matches the currently selected theme.') ?> 46dd6b2bfcSGreg Roach </p> 47dd6b2bfcSGreg Roach <textarea name="html" id="html" class="html-edit form-control" rows="10"><?= e($html) ?></textarea> 48dd6b2bfcSGreg Roach </div> 49dd6b2bfcSGreg Roach</div> 50dd6b2bfcSGreg Roach 519e3c2cf9SGreg Roach<fieldset class="row mb-3"> 5239bf58ecSGreg Roach <legend class="col-form-label col-sm-3"> 53dd6b2bfcSGreg Roach <?= I18N::translate('Show the date and time of update') ?> 54dd6b2bfcSGreg Roach </legend> 55dd6b2bfcSGreg Roach <div class="col-sm-9"> 56b6c326d8SGreg Roach <?= view('components/radios-inline', ['name' => 'show_timestamp', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_timestamp]) ?> 57dd6b2bfcSGreg Roach </div> 58dd6b2bfcSGreg Roach</fieldset> 59dd6b2bfcSGreg Roach 609e3c2cf9SGreg Roach<fieldset class="row mb-3"> 6139bf58ecSGreg Roach <legend class="col-form-label col-sm-3"> 62dd6b2bfcSGreg Roach <?= I18N::translate('Show this block for which languages') ?> 63dd6b2bfcSGreg Roach </legend> 64dd6b2bfcSGreg Roach <div class="col-sm-9"> 65e73fb82fSGreg Roach <?= view('edit/language-checkboxes', ['languages' => $languages]) ?> 66dd6b2bfcSGreg Roach </div> 67dd6b2bfcSGreg Roach</fieldset> 68b6c326d8SGreg Roach 69b6c326d8SGreg Roach<?php View::push('javascript') ?> 70b6c326d8SGreg Roach<script> 71b6c326d8SGreg Roach $("#template").change(function () { 72b6c326d8SGreg Roach this.form.html.value=this.options[this.selectedIndex].value; 73b6c326d8SGreg Roach CKEDITOR.instances.html.setData(document.getElementById("html").value); 74b6c326d8SGreg Roach }); 75b6c326d8SGreg Roach</script> 76b6c326d8SGreg Roach<?php View::endpush() ?> 77