blob: 8ad514ae642abbe143bc8cdba3a380d73b5938e1 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<?php
function categorySelectList($category_tree, $selected = NULL, $prefix = '') {
foreach($category_tree as $category) {
$option = '<option value="%s"%s>%s%s [%d]</option>';
$select = ($category['ID'] == $selected) ? ' selected' : '';
printf($option, $category['ID'], $select, $prefix, escapeHTML($category['NAME']), $category['ID']);
if(isset($category['CHILDS'])) {
# If there are children, call self and pass children array.
(__FUNCTION__)($category['CHILDS'], $selected, $prefix.'– ');
}
}
}
?>
<?php if($FORM['INFO']): ?>
<div id="message-list-wrapper">
<ul id="message-list">
<?php foreach($FORM['INFO'] as $message): ?>
<li><?=$message?></li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>
<form action="" method="POST">
<input type="hidden" name="token" value="<?=$FORM['TOKEN']?>">
<?php if($FORM['TYPE'] !== 'DELETE'): ?>
<div class="form-grid">
<label for="form_name">
<i class="fa fa-newspaper-o"></i><?=$Language->text('label_name')?></label>
<div class="form-grid-item">
<input id="form_name" name="name" value="<?=escapeHTML($FORM['DATA']['NAME'])?>" required autofocus>
</div>
<label for="form_slug">
<i class="fa fa-link"></i><?=$Language->text('label_slug')?></label>
<div class="form-grid-item">
<input id="form_slug" name="slug" value="<?=escapeHTML($FORM['DATA']['SLUG'])?>">
</div>
<label for="form_category">
<i class="fa fa-tag"></i><?=$Language->text('label_category')?></label>
<div class="form-grid-item">
<select id="form_category" name="category">
<option value="">[ –– <?=$Language->text('label_category')?> –– ]</option>
<?=categorySelectList($FORM['CATEGORY_TREE'], $FORM['DATA']['CATEGORY']);?>
</select>
</div>
<label for="form_user">
<i class="fa fa-user"></i><?=$Language->text('label_user')?></label>
<div class="form-grid-item">
<select id="form_user" name="user">
<?php $selected_user_id = $FORM['DATA']['USER'] ?? $_SESSION['USER_ID'] ?>
<?php foreach($FORM['USER_LIST'] as $user): ?>
<option value="<?=$user['ID']?>"<?=($selected_user_id == $user['ID']) ? ' selected' : '' ?>><?=escapeHTML($user['FULLNAME'])?> [<?=$user['USERNAME']?>]</option>
<?php endforeach; ?>
</select>
</div>
<label for="form_time_insert">
<i class="fa fa-clock-o"></i><?=$Language->text('label_insert')?></label>
<div class="form-grid-item">
<input id="form_time_insert" name="time_insert" placeholder="YYYY-MM-DD HH:II:SS" value="<?=escapeHTML($FORM['DATA']['TIME_INSERT'])?>">
</div>
<label for="form_time_update">
<i class="fa fa-pencil"></i><?=$Language->text('label_update')?></label>
<div class="form-grid-item">
<input id="form_time_update" name="time_update" placeholder="<?=escapeHTML($FORM['DATA']['TIME_UPDATE'] ?: 'CURRENT_TIMESTAMP')?>" value="">
</div>
</div>
<div id="content-editor-wrapper" class="form-border-box">
<div id="button-list-wrapper">
<ul id="markdown-list" class="button-list markdown">
<li data-markdown="bold" class="fa fa-bold" title="<?=$Language->text('markdown_bold')?>"></li>
<li data-markdown="italic" class="fa fa-italic" title="<?=$Language->text('markdown_italic')?>"></li>
<li data-markdown="heading" class="fa fa-header" title="<?=$Language->text('markdown_heading')?>"></li>
<li data-markdown="link" class="fa fa-link" title="<?=$Language->text('markdown_link')?>"></li>
<li data-markdown="image" class="fa fa-picture-o" title="<?=$Language->text('markdown_image')?>"></li>
<li data-markdown="code" class="fa fa-code" title="<?=$Language->text('markdown_code')?>"></li>
<li data-markdown="quote" class="fa fa-quote-right" title="<?=$Language->text('markdown_quote')?>"></li>
<li data-markdown="list_ul" class="fa fa-list-ul" title="<?=$Language->text('markdown_list_ul')?>"></li>
<li data-markdown="list_ol" class="fa fa-list-ol" title="<?=$Language->text('markdown_list_ol')?>"></li>
</ul>
</div>
<textarea id="content-editor" name="body" placeholder="[…]" required><?=escapeHTML($FORM['DATA']['BODY'])?></textarea>
</div>
<div id="emoticon-list-wrapper" class="form-border-box background padding">
<ul id="emoticon-list" class="button-list emoticons">
<?php foreach(getUnicodeEmoticons() as $emoticon => $explanation):?>
<li data-emoticon="<?=$emoticon?>" title="<?=$explanation?>"><?=$emoticon?></li>
<?php endforeach; ?>
</ul>
</div>
<div class="form-border-box background padding">
<input id="form_argv" name="argv" maxlength="250" placeholder="[ARGUMENT_ONE=foo|ARGUMENT_TWO=bar …]" value="<?=escapeHTML($FORM['DATA']['ARGV'])?>">
</div>
<?php else: ?>
<div class="form-border-box background padding">
<?=$HTML?>
</div>
<?php endif; ?>
<div class="form-border-box background padding">
<?php if($FORM['TYPE'] === 'INSERT'): ?>
<input id="insert-button" type="submit" name="insert" value="<?=$Language->text('insert')?>">
<?php elseif($FORM['TYPE'] === 'UPDATE'): ?>
<input id="update-button" type="submit" name="update" value="<?=$Language->text('update')?>">
<?php elseif($FORM['TYPE'] === 'DELETE'): ?>
<input id="delete-button" type="submit" name="delete" value="<?=$Language->text('delete')?>" data-text="<?=$Language->text('sure')?>">
<?php endif; ?>
</div>
</form>
|