-
Notifications
You must be signed in to change notification settings - Fork 45
/
edit_link_plugin.php
executable file
·195 lines (170 loc) · 5.34 KB
/
edit_link_plugin.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
<?php
/*
p2 - リンクプラグイン編集インタフェース
*/
include_once './conf/conf.inc.php';
require_once P2_LIB_DIR . '/FileCtl.php';
$_login->authorize(); // ユーザ認証
if (!empty($_POST['submit_save']) || !empty($_POST['submit_default'])) {
if (!isset($_POST['csrfid']) or $_POST['csrfid'] != P2Util::getCsrfId()) {
die('p2 error: 不正なポストです');
}
}
//=====================================================================
// 前処理
//=====================================================================
require_once P2_LIB_DIR . '/wiki/linkpluginctl.class.php';
$linkPlugin = &new LinkPluginCtl;
// [保存]ボタン
if (!empty($_POST['submit_save'])) {
if ($linkPlugin->save($_POST['dat']) !== FALSE) {
$_info_msg_ht .= "<p>○設定を更新保存しました</p>";
} else {
$_info_msg_ht .= "<p>×設定を更新保存できませんでした</p>";
}
// [リストを空にする]ボタン
} else if (!empty($_POST['submit_default'])) {
if (@$linkPlugin->clear()) {
$_info_msg_ht .= "<p>○リストを空にしました</p>";
} else {
$_info_msg_ht .= "<p>×リストを空にできませんでした</p>";
}
}
// リスト読み込み
$formdata = $linkPlugin->load();
//=====================================================================
// プリント設定
//=====================================================================
$ptitle_top = 'リンクプラグイン編集';
$ptitle = strip_tags($ptitle_top);
$csrfid = P2Util::getCsrfId();
//=====================================================================
// プリント
//=====================================================================
// ヘッダHTMLをプリント
P2Util::header_nocache();
echo $_conf['doctype'];
echo <<<EOP
<html lang="ja">
<head>
{$_conf['meta_charset_ht']}
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>{$ptitle}</title>\n
EOP;
if (!$_conf['ktai']) {
echo <<<EOP
<script type="text/javascript" src="js/basic.js?{$_conf['p2expack']}"></script>
<link rel="stylesheet" href="css.php?css=style&skin={$skin_en}" type="text/css">
<link rel="stylesheet" href="css.php?css=edit_conf_user&skin={$skin_en}" type="text/css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">\n
EOP;
}
$body_at = ($_conf['ktai']) ? $_conf['k_colors'] : ' onLoad="top.document.title=self.document.title;"';
echo <<<EOP
</head>
<body{$body_at}>\n
EOP;
// PC用表示
if (!$_conf['ktai']) {
echo <<<EOP
<p id="pan_menu"><a href="editpref.php">設定管理</a> > {$ptitle_top}</p>\n
EOP;
}
// PC用表示
if (!$_conf['ktai']) {
$htm['form_submit'] = <<<EOP
<tr class="group">
<td colspan="3" align="center">
<input type="submit" name="submit_save" value="変更を保存する">
<input type="submit" name="submit_default" value="リストを空にする" onClick="if (!window.confirm('リストを空にしてもよろしいですか?(やり直しはできません)')) {return false;}"><br>
</td>
</tr>\n
EOP;
// 携帯用表示
} else {
$htm['form_submit'] = <<<EOP
<input type="submit" name="submit_save" value="変更を保存する"><br>\n
EOP;
}
// 情報メッセージ表示
if (!empty($_info_msg_ht)) {
echo $_info_msg_ht;
$_info_msg_ht = "";
}
$usage = <<<EOP
<ul>
<li>×: 削除</li>
<li>Match: マッチ条件 (空にすると登録解除)</li>
<li>Replace: 置換HTML (空にすると登録解除)</li>
</ul>
EOP;
if ($_conf['ktai']) {
$usage = mb_convert_kana($usage, 'k');
}
echo <<<EOP
{$usage}
<form method="POST" action="{$_SERVER['SCRIPT_NAME']}" target="_self" accept-charset="{$_conf['accept_charset']}">
{$_conf['k_input_ht']}
<input type="hidden" name="detect_hint" value="◎◇ ◇◎">
<input type="hidden" name="csrfid" value="{$csrfid}">\n
EOP;
// PC用表示(table)
if (!$_conf['ktai']) {
echo <<<EOP
<table class="edit_conf_user" cellspacing="0">
<tr>
<td align="center">×</td>
<td align="center">Match</td>
<td align="center">Replace</td>
</tr>
<tr class="group">
<td colspan="3">新規登録</td>
</tr>\n
EOP;
$row_format = <<<EOP
<tr>
<td><input type="checkbox" name="dat[%1\$d][del]" value="1"></td>
<td><input type="text" size="60" name="dat[%1\$d][match]" value="%2\$s"></td>
<td><input type="text" size="60" name="dat[%1\$d][replace]" value="%3\$s"></td>
</tr>\n
EOP;
// 携帯用表示
} else {
echo "新規登録<br>\n";
$row_format = <<<EOP
<input type="text" name="dat[%1\$d][match]" value="%2\$s"><br>
<input type="text" name="dat[%1\$d][replace]" value="%3\$s"><br>
<input type="text" name="dat[%1\$d][del]" value="1">×<br>
\n
EOP;
}
printf($row_format, -1, '', '');
echo $htm['form_submit'];
if (!empty($formdata)) {
foreach ($formdata as $k => $v) {
printf($row_format,
$k,
htmlspecialchars($v['match'], ENT_QUOTES),
htmlspecialchars($v['replace'], ENT_QUOTES)
);
}
echo $htm['form_submit'];
}
// PCなら
if (!$_conf['ktai']) {
echo '</table>'."\n";
}
echo '</form>'."\n";
// 携帯なら
if ($_conf['ktai']) {
echo <<<EOP
<hr>
<a {$_conf['accesskey']}="{$_conf['k_accesskey']['up']}" href="editpref.php{$_conf['k_at_q']}">{$_conf['k_accesskey']['up']}.設定編集</a>
{$_conf['k_to_index_ht']}
EOP;
}
echo '</body></html>';
// ここまで
exit;