xref: /webtrees/resources/views/modules/stories/edit.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
2*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
3*dd6b2bfcSGreg Roach
4*dd6b2bfcSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), route('admin-modules') => I18N::translate('Modules'), route('module', ['module' => 'stories', 'action' => 'Admin', 'ged' => $tree->getName()]) => I18N::translate('Stories'), $title]]) ?>
5*dd6b2bfcSGreg Roach
6*dd6b2bfcSGreg Roach<h1><?= $title ?></h1>
7*dd6b2bfcSGreg Roach
8*dd6b2bfcSGreg Roach<form class="form-horizontal" method="post" action="<?= e(route('module', ['module' => 'stories', 'action' => 'AdminEdit', 'block_id' => $block_id, 'ged' => $tree->getName()])) ?>">
9*dd6b2bfcSGreg Roach    <?= csrf_field() ?>
10*dd6b2bfcSGreg Roach
11*dd6b2bfcSGreg Roach    <div class="row form-group">
12*dd6b2bfcSGreg Roach        <label for="xref" class="col-sm-3 col-form-label">
13*dd6b2bfcSGreg Roach            <?= I18N::translate('Individual') ?>
14*dd6b2bfcSGreg Roach        </label>
15*dd6b2bfcSGreg Roach        <div class="col-sm-9">
16*dd6b2bfcSGreg Roach            <?= FunctionsEdit::formControlIndividual($tree, $individual, ['id' => 'xref', 'name' => 'xref']) ?>
17*dd6b2bfcSGreg Roach        </div>
18*dd6b2bfcSGreg Roach    </div>
19*dd6b2bfcSGreg Roach
20*dd6b2bfcSGreg Roach    <div class="row form-group">
21*dd6b2bfcSGreg Roach        <label for="story-title" class="col-sm-3 col-form-label">
22*dd6b2bfcSGreg Roach            <?= I18N::translate('Story title') ?>
23*dd6b2bfcSGreg Roach        </label>
24*dd6b2bfcSGreg Roach        <div class="col-sm-9">
25*dd6b2bfcSGreg Roach            <input type="text" class="form-control" name="story_title" id="story-title" value="<?= e($story_title) ?>">
26*dd6b2bfcSGreg Roach        </div>
27*dd6b2bfcSGreg Roach    </div>
28*dd6b2bfcSGreg Roach
29*dd6b2bfcSGreg Roach    <div class="row form-group">
30*dd6b2bfcSGreg Roach        <label for="story-body" class="col-sm-3 col-form-label">
31*dd6b2bfcSGreg Roach            <?= I18N::translate('Story') ?>
32*dd6b2bfcSGreg Roach        </label>
33*dd6b2bfcSGreg Roach        <div class="col-sm-9">
34*dd6b2bfcSGreg Roach            <textarea name="story_body" id="story-body" class="html-edit form-control" rows="10"><?= e($story_body) ?></textarea>
35*dd6b2bfcSGreg Roach        </div>
36*dd6b2bfcSGreg Roach    </div>
37*dd6b2bfcSGreg Roach
38*dd6b2bfcSGreg Roach    <div class="row form-group">
39*dd6b2bfcSGreg Roach        <label class="col-sm-3 col-form-label">
40*dd6b2bfcSGreg Roach            <?= I18N::translate('Show this block for which languages') ?>
41*dd6b2bfcSGreg Roach        </label>
42*dd6b2bfcSGreg Roach        <div class="col-sm-9">
43*dd6b2bfcSGreg Roach            <?= FunctionsEdit::editLanguageCheckboxes('languages', $languages) ?>
44*dd6b2bfcSGreg Roach        </div>
45*dd6b2bfcSGreg Roach    </div>
46*dd6b2bfcSGreg Roach
47*dd6b2bfcSGreg Roach    <div class="row form-group">
48*dd6b2bfcSGreg Roach        <div class="offset-sm-3 col-sm-9">
49*dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
50*dd6b2bfcSGreg Roach                <?= view('icons/save') ?>
51*dd6b2bfcSGreg Roach                <?= I18N::translate('save') ?>
52*dd6b2bfcSGreg Roach            </button>
53*dd6b2bfcSGreg Roach
54*dd6b2bfcSGreg Roach            <a href="<?= e(route('module', ['module' => 'stories', 'action' => 'Admin', 'ged' => $tree->getName()])) ?>" class="btn btn-secondary">
55*dd6b2bfcSGreg Roach                <?= view('icons/cancel') ?>
56*dd6b2bfcSGreg Roach                <?= I18N::translate('cancel') ?>
57*dd6b2bfcSGreg Roach            </a>
58*dd6b2bfcSGreg Roach        </div>
59*dd6b2bfcSGreg Roach    </div>
60*dd6b2bfcSGreg Roach</form>
61*dd6b2bfcSGreg Roach
62*dd6b2bfcSGreg Roach<?= view('modules/ckeditor/ckeditor-js') ?>
63