forked from flazyforum/Flazy-Core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.php
232 lines (213 loc) · 13.2 KB
/
help.php
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
* FAQ форума.
*
* @copyright Copyright (C) 2008 PunBB, partially based on code copyright (C) 2008 FluxBB.org
* @modified Copyright (C) 2014-2018 Flazy
* @license http://www.gnu.org/licenses/gpl.html GPL версии 2 или выше
* @package Flazy
*/
if (!defined('FORUM_ROOT'))
define('FORUM_ROOT', './');
require FORUM_ROOT . 'include/common.php';
($hook = get_hook('he_start')) ? eval($hook) : null;
if (!$forum_user['g_read_board'])
message($lang_common['No view']);
// Load the help.php language file
require FORUM_ROOT . 'lang/' . $forum_user['language'] . '/help.php';
$section = isset($_GET['section']) ? $_GET['section'] : null;
if (!$section)
message($lang_common['Bad request']);
// Check for use of incorrect URLs
confirm_current_url(forum_link($forum_url['help'], $section));
$forum_page['crumbs'] = array(
array($forum_config['o_board_title'], forum_link($forum_url['help'])),
$lang_help['Help']
);
$forum_js->file('jquery');
$forum_js->code('$(document).ready( function() {
$(\'.hide-head\').toggle(
function() {
$(this).children().text(\'' . $lang_common['Hidden text'] . '\');
$(this).next().show("slow");
},
function() {
$(this).children().text(\'' . $lang_common['Hidden show text'] . '\');
$(this).next().hide("slow");
}
);
});');
define('FORUM_PAGE', 'help');
require FORUM_ROOT . 'header.php';
// START SUBST - <forum_main>
ob_start();
($hook = get_hook('he_main_output_start')) ? eval($hook) : null;
?>
<div id="brd-main" class="main">
<div class="main-head">
<h1 class="hn"><span><?php echo $lang_help['Help'] ?></span></h1>
</div>
<?php
if (!$section || $section == 'bbcode') {
?>
<div class="main-subhead">
<h2 class="hn"><span><?php printf($lang_help['Help with'], $lang_common['BBCode']) ?></span></h2>
</div>
<div class="main-content main-frm">
<div class="ct-box info-box">
<p><?php echo $lang_help['BBCode info'] ?></p>
</div>
<div class="ct-box help-box">
<h3 class="hn"><span><?php echo $lang_help['Text style'] ?></span></h3>
<div class="entry-content">
<code>[b]<?php echo $lang_help['Bold text'] ?>[/b]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><strong><?php echo $lang_help['Bold text'] ?></strong></samp>
</div>
<div class="entry-content">
<code>[u]<?php echo $lang_help['Underlined text'] ?>[/u]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><span class="bbu"><?php echo $lang_help['Underlined text'] ?></span></samp>
</div>
<div class="entry-content">
<code>[i]<?php echo $lang_help['Italic text'] ?>[/i]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><i><?php echo $lang_help['Italic text'] ?></i></samp>
</div>
<div class="entry-content">
<code>[color=#FF0000]<?php echo $lang_help['Red text'] ?>[/color]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><span style="color: #ff0000"><?php echo $lang_help['Red text'] ?></span></samp>
</div>
<div class="entry-content">
<code>[color=blue]<?php echo $lang_help['Blue text'] ?>[/color]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><span style="color: blue"><?php echo $lang_help['Blue text'] ?></span></samp>
</div>
<div class="entry-content">
<code>[b][u]<?php echo $lang_help['Bold, underlined text'] ?>[/u][/b]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><span class="bbu"><strong><?php echo $lang_help['Bold, underlined text'] ?></strong></span></samp>
</div>
<div class="entry-content">
<code>[h]<?php echo $lang_help['Heading text'] ?>[/h]</code> <span><?php echo $lang_help['produces'] ?></span>
<div class="entry-content"><h5><samp><?php echo $lang_help['Heading text'] ?></samp></h5></div>
</div>
<div class="entry-content">
<code>[hr]</code> <span><?php echo $lang_help['produces'] ?></span>
<div class="entry-content"><hr /></div>
</div>
<div class="entry-content">
<code>[wiki=ru]<?php echo $lang_help['Simple example loc'] ?>[/wiki]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><a href="http://ru.wikipedia.org/wiki/Зеленоград" class="wiki_link" onclick="window.open(this.href); return false"><?php echo $lang_help['Simple example loc'] ?></a></samp>
</div>
<div class="entry-content">
<code>[wiki=en]<?php echo $lang_help['Simple example en'] ?>[/wiki]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><a href="http://en.wikipedia.org/wiki/Zelenograd" class="wiki_link" onclick="window.open(this.href); return false"><?php echo $lang_help['Simple example en'] ?></a></samp>
</div>
<div class="entry-content">
<code>[hide]<?php echo $lang_help['Simple text'] ?>[/hide]</code> <span><?php echo $lang_help['produces'] ?></span>
<div class="hide-wrap"><span class="hide-head"><span><?php echo $lang_common['Hidden show text'] ?></span></span><div class="hide-text"><?php echo $lang_help['Simple text'] ?></div></div>
<code>[hide=0]<?php echo $lang_help['Hide guest'] ?>[/hide]</code> <span><?php echo $lang_help['produces'] ?></span>
<div class="hide-wrap"><span class="hide-head"><span><?php echo $lang_common['Hidden show text'] ?></span></span><div class="hide-text"><?php echo $lang_help['Hide guest'] ?></div></div>
<code>[hide=10]<?php echo $lang_help['Hide users'] ?>[/hide]</code> <span><?php echo $lang_help['produces'] ?></span>
<div class="hide-wrap"><span class="hide-head"><span><?php echo $lang_common['Hidden show text'] ?></span></span><div class="hide-text"><?php echo $lang_help['Hide users'] ?></div></div>
</div>
<?php ($hook = get_hook('he_new_bbcode_text_style')) ? eval($hook) : null; ?>
</div>
<div class="ct-box help-box">
<h3 class="hn"><span><?php echo $lang_help['Links info'] ?></span></h3>
<div class="entry-content">
<code>[url=<?php echo $base_url . '/' ?>]<?php echo forum_htmlencode($forum_config['o_board_title']) ?>[/url]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><a href="<?php echo $base_url . '/' ?>"><?php echo forum_htmlencode($forum_config['o_board_title']) ?></a></samp>
</div>
<div class="entry-content">
<code>[url]<?php echo $base_url . '/' ?>[/url]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><a href="<?php echo $base_url ?>"><?php echo $base_url . '/' ?></a></samp>
</div>
<div class="entry-content">
<code>[email][email protected][/email]</code> <span><?php echo $lang_help['produces'] ?></span>
<samp><a href="mailto:[email protected]">[email protected]</a></samp>
</div>
<div class="entry-content">
<code>[[email protected]]<?php echo $lang_help['My e-mail address'] ?>[/email]</code><span><?php echo $lang_help['produces'] ?></span>
<samp><a href="mailto:[email protected]"><?php echo $lang_help['My e-mail address'] ?></a></samp>
</div>
<?php ($hook = get_hook('he_new_bbcode_link')) ? eval($hook) : null; ?>
</div>
<div class="ct-box help-box">
<h3 class="hn"><span><?php echo $lang_help['Quotes info'] ?></span></h3>
<div class="entry-content">
<code>[quote=James]<?php echo $lang_help['Quote text'] ?>[/quote]</code> <span><?php echo $lang_help['produces named'] ?></span>
<div class="quotebox"><cite>James <?php echo $lang_common['wrote'] ?>:</cite><blockquote><p><?php echo $lang_help['Quote text'] ?></p></blockquote></div>
<code>[quote]<?php echo $lang_help['Quote text'] ?>[/quote]</code> <span><?php echo $lang_help['produces unnamed'] ?></span>
<div class="quotebox"><blockquote><p><?php echo $lang_help['Quote text'] ?></p></blockquote></div>
</div>
</div>
<div class="ct-box help-box">
<h3 class="hn"><span><?php echo $lang_help['Code info'] ?></span></h3>
<div class="entry-content">
<code>[code]<?php echo $lang_help['Code text'] ?>[/code]</code> <span><?php echo $lang_help['produces code box'] ?></span>
<div class="codebox"><pre><code><?php echo $lang_help['Code text'] ?></code></pre></div>
<code>[code]<?php echo $lang_help['Code text long'] ?>[/code]</code> <span><?php echo $lang_help['produces scroll box'] ?></span>
<div class="codebox"><pre><code><?php echo $lang_help['Code text long'] ?></code></pre></div>
</div>
</div>
<div class="ct-box help-box">
<h3 class="hn"><span><?php echo $lang_help['List info'] ?></span></h3>
<div class="entry-content">
<code>[list][*]<?php echo $lang_help['List text 1'] ?>[/*][*]<?php echo $lang_help['List text 2'] ?>[/*][*]<?php echo $lang_help['List text 3'] ?>[/*][/list]</code> <span><?php echo $lang_help['produces list'] ?></span>
<ul><li><?php echo $lang_help['List text 1'] ?></li><li><?php echo $lang_help['List text 2'] ?></li><li><?php echo $lang_help['List text 3'] ?></li></ul>
<code>[list=1][*]<?php echo $lang_help['List text 1'] ?>[/*][*]<?php echo $lang_help['List text 2'] ?>[/*][*]<?php echo $lang_help['List text 3'] ?>[/*][/list]</code> <span><?php echo $lang_help['produces decimal list'] ?></span>
<ol class="decimal"><li><?php echo $lang_help['List text 1'] ?></li><li><?php echo $lang_help['List text 2'] ?></li><li><?php echo $lang_help['List text 3'] ?></li></ol>
<code>[list=a][*]<?php echo $lang_help['List text 1'] ?>[/*][*]<?php echo $lang_help['List text 2'] ?>[/*][*]<?php echo $lang_help['List text 3'] ?>[/*][/list]</code> <span><?php echo $lang_help['produces alpha list'] ?></span>
<ol class="alpha"><li><?php echo $lang_help['List text 1'] ?></li><li><?php echo $lang_help['List text 2'] ?></li><li><?php echo $lang_help['List text 3'] ?></li></ol>
</div>
</div>
<?php ($hook = get_hook('he_new_bbcode_section')) ? eval($hook) : null; ?>
</div>
<?php
} else if ($section == 'img') {
?>
<div class="main-subhead">
<h2 class="hn"><span><?php printf($lang_help['Help with'], $lang_common['Images']) ?></span></h2>
</div>
<div class="main-content main-frm">
<div class="ct-box help-box">
<p class="hn"><?php echo $lang_help['Image info'] ?></p>
<div class="entry-content">
<code>[img=Тест ББ-кода Flazy]<?php echo $base_url ?>/img/test.png[/img]</code>
<samp><img src="<?php echo $base_url ?>/img/test.png" title="Тест ББ-кода Flazy" alt="Тест ББ-кода Flazy" /></samp>
</div>
</div>
<?php ($hook = get_hook('he_new_img_section')) ? eval($hook) : null; ?>
</div>
<?php
} else if ($section == 'smilies') {
?>
<div id="smilies" class="main-subhead">
<h2 class="hn"><span><?php printf($lang_help['Help with'], $lang_common['Smilies']) ?></span></h2>
</div>
<div class="main-content main-frm">
<div class="ct-box help-box">
<p class="hn"><?php echo $lang_help['Smilies info'] ?></p>
<div class="entry-content">
<?php
// Display the smiley set
if (!defined('FORUM_PARSER_LOADED'))
require FORUM_ROOT . 'include/parser.php';
$smiley_groups = array();
foreach ($smilies as $smiley_text => $smiley_img)
$smiley_groups[$smiley_img][] = $smiley_text;
foreach ($smiley_groups as $smiley_img => $smiley_texts)
echo "\t\t\t\t" . '<p>' . implode(' ' . $lang_common['and'] . ' ', $smiley_texts) . ' <span>' . $lang_help['produces'] . '</span> <img src="' . $base_url . '/img/smilies/' . $smiley_img . '" alt="' . $smiley_texts[0] . '" /></p>' . "\n";
?>
</div>
</div>
</div>
<?php
}
($hook = get_hook('he_new_section')) ? eval($hook) : null;
?>
</div>
<?php
($hook = get_hook('he_end')) ? eval($hook) : null;
$tpl_temp = forum_trim(ob_get_contents());
$tpl_main = str_replace('<forum_main>', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST - <forum_main>
require FORUM_ROOT . 'footer.php';