-
Notifications
You must be signed in to change notification settings - Fork 45
/
editpref.php
730 lines (642 loc) · 21.3 KB
/
editpref.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
<?php
/**
* rep2 - 設定管理
*/
require_once './conf/conf.inc.php';
$_login->authorize(); // ユーザ認証
// {{{ ホストの同期用設定
$synctitles = array(
'favita' => 'お気に板',
'fav' => 'お気にスレ',
'recent' => '最近読んだスレ',
'res_hist' => '書き込み履歴',
'palace' => 'スレの殿堂'
);
// }}}
// {{{ 設定変更処理
// ホストの同期
if (isset($_POST['sync'])) {
$sync_boards = array();
$sync_indexes = array();
switch ($_POST['sync']) {
case 'favita':
if ($_conf['expack.misc.multi_favs']) {
$sync_boards[] = $_conf['orig_favita_brd'];
for ($i = 1; $i <= $_conf['expack.misc.favset_num']; $i++) {
$sync_boards[] = sprintf('%s/p2_favita%d.brd', $_conf['pref_dir'], $i);
}
} else {
$sync_boards[] = $_conf['favita_brd'];
}
break;
case 'fav':
if ($_conf['expack.misc.multi_favs']) {
$sync_indexes[] = $_conf['orig_favlist_idx'];
for ($i = 1; $i <= $_conf['expack.misc.favset_num']; $i++) {
$sync_indexes[] = sprintf('%s/p2_favlist%d.idx', $_conf['pref_dir'], $i);
}
} else {
$sync_indexes[] = $_conf['favlist_idx'];
}
break;
case 'recent':
$sync_indexes[] = $_conf['recent_idx'];
break;
case 'res_hist':
$sync_indexes[] = $_conf['res_hist_idx'];
break;
case 'palace':
$sync_indexes[] = $_conf['palace_idx'];
break;
case 'all':
if ($_conf['expack.misc.multi_favs']) {
$sync_boards[] = $_conf['orig_favita_brd'];
$sync_indexes[] = $_conf['orig_favlist_idx'];
for ($i = 1; $i <= $_conf['expack.misc.favset_num']; $i++) {
$sync_boards[] = sprintf('%s/p2_favita%d.brd', $_conf['pref_dir'], $i);
$sync_indexes[] = sprintf('%s/p2_favlist%d.idx', $_conf['pref_dir'], $i);
}
} else {
$sync_boards[] = $_conf['favita_brd'];
$sync_indexes[] = $_conf['favlist_idx'];
}
$sync_indexes[] = $_conf['recent_idx'];
$sync_indexes[] = $_conf['res_hist_idx'];
$sync_indexes[] = $_conf['palace_idx'];
break;
}
foreach ($sync_boards as $brd) {
if (file_exists($brd)) {
BbsMap::syncBrd($brd);
}
}
foreach ($sync_indexes as $idx) {
if (file_exists($idx)) {
BbsMap::syncIdx($idx);
}
}
// お気に入りセット変更があれば、設定ファイルを書き換える
} elseif ($_conf['expack.misc.multi_favs'] && isset($_POST['favsetlist'])) {
updateFavSetList();
}
// }}}
// {{{ 書き出し用変数
$ptitle = '設定管理';
if ($_conf['ktai']) {
$status_st = 'ステータス';
$autho_user_st = '認証ユーザ';
$client_host_st = '端末ホスト';
$client_ip_st = '端末IPアドレス';
$browser_ua_st = 'ブラウザUA';
$p2error_st = 'rep2 エラー';
} else {
$status_st = 'ステータス';
$autho_user_st = '認証ユーザ';
$client_host_st = '端末ホスト';
$client_ip_st = '端末IPアドレス';
$browser_ua_st = 'ブラウザUA';
$p2error_st = 'rep2 エラー';
}
$autho_user_ht = '';
// }}}
//=========================================================
// HTMLプリント
//=========================================================
P2Util::header_nocache();
echo $_conf['doctype'];
echo <<<EOP
<html lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
{$_conf['extra_headers_ht']}
<title>{$ptitle}</title>\n
EOP;
if (!$_conf['ktai']) {
echo <<<EOP
<link rel="stylesheet" type="text/css" href="css.php?css=style&skin={$skin_en}">
<link rel="stylesheet" type="text/css" href="css.php?css=editpref&skin={$skin_en}">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">\n
<script type="text/javascript" src="js/basic.js?{$_conf['p2_version_id']}"></script>
<script type="text/javascript" src="js/changeskin.js?{$_conf['p2_version_id']}"></script>
<script type="text/javascript" src="js/respopup.js?{$_conf['p2_version_id']}"></script>
<script type="text/javascript" src="js/editpref.js?{$_conf['p2_version_id']}"></script>\n
EOP;
$body_at = ' onload="window.top.document.title=window.self.document.title;"';
} elseif (!$_conf['iphone']) {
$body_at = $_conf['k_colors'];
} else {
$body_at = '';
}
echo <<<EOP
</head>
<body{$body_at}>\n
EOP;
if (!$_conf['ktai']) {
//<p id="pan_menu"><a href="setting.php">設定</a> > {$ptitle}</p>
echo "<p id=\"pan_menu\">{$ptitle}</p>\n";
}
P2Util::printInfoHtml();
// 設定プリント
$aborn_thread_txt = 'p2_aborn_thread.txt';
$aborn_res_txt = 'p2_aborn_res.txt';
$aborn_name_txt = 'p2_aborn_name.txt';
$aborn_mail_txt = 'p2_aborn_mail.txt';
$aborn_msg_txt = 'p2_aborn_msg.txt';
$aborn_id_txt = 'p2_aborn_id.txt';
$ng_name_txt = 'p2_ng_name.txt';
$ng_mail_txt = 'p2_ng_mail.txt';
$ng_msg_txt = 'p2_ng_msg.txt';
$ng_id_txt = 'p2_ng_id.txt';
// +Wiki
$aborn_be_txt = 'p2_aborn_be.txt';
$ng_be_txt = 'p2_ng_be.txt';
echo '<div>';
echo <<<EOP
<a href="edit_conf_user.php{$_conf['k_at_q']}" class="button">ユーザ設定編集</a>
EOP;
if (!$_conf['ktai'] && $_conf['expack.skin.enabled']) {
$skin_options = array('conf_user_style' => '標準');
foreach (array('./skin', './user_skin') as $skin_dir) {
if (is_dir($skin_dir)) {
foreach (glob("{$skin_dir}/*.php") as $skin_file) {
$_name = basename($skin_file, '.php');
if (!array_key_exists($_name, $skin_options) &&
is_file($skin_file) &&
preg_match('/^[0-9A-Za-z_\\-]+$/', $_name))
{
$skin_options[$_name] = $_name;
}
}
}
}
uksort($skin_options, 'compareSkinNames');
$skin_options_ht = '';
foreach ($skin_options as $_name => $_title) {
$skin_options_ht .= sprintf('<option value="%s"%s>%s</option>',
htmlspecialchars($_name, ENT_QUOTES),
($_name == $skin_name) ? ' selected' : '',
htmlspecialchars($_title, ENT_QUOTES));
}
echo <<<EOP
| <a href="edit_user_font.php">フォント設定編集</a>
| スキン:<form class="inline-form" method="get" action="{$_SERVER['SCRIPT_NAME']}"
onsubmit="changeSkinAll(this.skin.options[this.skin.selectedIndex].value, '{$_conf['p2_version_id']}'); return false;">
<select name="skin">{$skin_options_ht}</select><input type="submit" value="変更">
</form>
EOP;
}
echo '</div>';
// PC用表示
if (!$_conf['ktai']) {
echo "<table id=\"editpref\">\n";
// {{{ PC - NGワード編集
echo "<tr><td>\n\n";
echo <<<EOP
<fieldset>
<legend><a href="http://akid.s17.xrea.com/p2puki/pukiwiki.php?%5B%5BNG%A5%EF%A1%BC%A5%C9%A4%CE%C0%DF%C4%EA%CA%FD%CB%A1%5D%5D" target="read">NGワード</a>編集</legend>
EOP;
printEditFileForm($ng_name_txt, '名前');
printEditFileForm($ng_mail_txt, 'メール');
printEditFileForm($ng_msg_txt, '本文');
printEditFileForm($ng_id_txt, 'ID');
// +Wiki
printEditFileForm($ng_be_txt, 'BE');
echo <<<EOP
</fieldset>\n\n
EOP;
echo "</td>";
// }}}
// {{{ PC - あぼーんワード編集
echo "<td>\n\n";
echo <<<EOP
<fieldset>
<legend>あぼーんワード編集</legend>\n
EOP;
printEditFileForm($aborn_res_txt, 'レス');
printEditFileForm($aborn_name_txt, '名前');
printEditFileForm($aborn_mail_txt, 'メール');
printEditFileForm($aborn_msg_txt, '本文');
printEditFileForm($aborn_id_txt, 'ID');
printEditFileForm($aborn_thread_txt, 'スレッド');
// +Wiki
printEditFileForm($aborn_be_txt, 'BE');
echo <<<EOP
</fieldset>\n
EOP;
echo "</td></tr>";
// }}}
// {{{ PC - ホストの同期 HTMLのセット
echo <<<EOP
<tr><td colspan="2">
<fieldset>
<legend>ホストの同期 (2chの板移転に対応します)</legend>
EOP;
echo getSyncFavoritesFormHt('all', 'すべて');
foreach ($synctitles as $syncmode => $syncname) {
echo getSyncFavoritesFormHt($syncmode, $syncname);
}
echo <<<EOP
</fieldset>
</td></tr>\n
EOP;
// }}}
// {{{ PC - セット切り替え・名称変更
if ($_conf['expack.misc.multi_favs']) {
echo "<tr><td colspan=\"2\">\n\n";
echo <<<EOP
<form action="editpref.php" method="post" accept-charset="{$_conf['accept_charset']}" target="_self" style="margin:0">
<input type="hidden" name="favsetlist" value="1">
<fieldset>
<legend>セット切り替え・名称変更(セット名を空にするとデフォルトの名前に戻ります)</legend>
<table>
<tr>\n
EOP;
echo "<td>\n";
echo getFavSetListFormHt('m_favlist_set', 'お気にスレ');
echo "</td><td>\n";
echo getFavSetListFormHt('m_favita_set', 'お気に板');
echo "</td><td>\n";
echo getFavSetListFormHt('m_rss_set', 'RSS');
echo "</td>\n";
echo <<<EOP
</tr>
</table>
<div>
<input type="submit" value="変更">
</div>
</fieldset>
{$_conf['detect_hint_input_ht']}{$_conf['k_input_ht']}
</form>\n\n
EOP;
echo "</td></tr>\n\n";
}
include_once P2_LIB_DIR . '/wiki/editpref.inc.php';
// }}}
}
// 携帯用表示
if ($_conf['ktai']) {
echo <<<EOP
<hr>
<p>アボン/NGワード編集</p>
<form method="GET" action="edit_aborn_word.php">
{$_conf['k_input_ht']}
<select name="file">
<option value="{$aborn_thread_txt}">アボン:スレ</option>
<option value="{$aborn_name_txt}">アボン:名前</option>
<option value="{$aborn_mail_txt}">アボン:メール</option>
<option value="{$aborn_msg_txt}">アボン:本文</option>
<option value="{$aborn_id_txt}">アボン:ID</option>
<option value="{$aborn_be_txt}">アボン:BE</option>
<option value="{$ng_name_txt}">NG:名前</option>
<option value="{$ng_mail_txt}">NG:メール</option>
<option value="{$ng_msg_txt}">NG:本文</option>
<option value="{$ng_id_txt}">NG:ID</option>
<option value="{$ng_id_txt}">NG:BE</option>
</select>
<input type="submit" value="編集">
</form>
<form method="GET" action="editfile.php">
{$_conf['k_input_ht']}
<input type="hidden" name="file" value="{$aborn_res_txt}">
<input type="submit" value="アボンレス編集">
</form>
<hr>
EOP;
echo "<p>ホストの同期(2chの板移転に対応します)</p>\n";
echo getSyncFavoritesFormHt('all', 'すべて');
foreach ($synctitles as $syncmode => $syncname) {
echo getSyncFavoritesFormHt($syncmode, $syncname);
}
// {{{ 携帯 - セット切り替え
if ($_conf['expack.misc.multi_favs']) {
echo <<<EOP
<hr>
<p>お気にスレ・お気に板・RSSのセットを選択</p>
<form action="editpref.php" method="post" accept-charset="{$_conf['accept_charset']}" target="_self">
{$_conf['k_input_ht']}
EOP;
echo getFavSetListFormHtK('m_favlist_set', 'お気にスレ'), '<br>';
echo getFavSetListFormHtK('m_favita_set', 'お気に板'), '<br>';
echo getFavSetListFormHtK('m_rss_set', 'RSS'), '<br>';
echo <<<EOP
<input type="submit" value="変更">
</form>
EOP;
}
// }}}
}
// {{{ 新着まとめ読みのキャッシュ表示
$matome_cache_list = MatomeCacheList::getList();
if ($matome_cache_list) {
$ckeyprefixlen = strlen(MatomeCacheList::getKeyPrefix());
$i = 0;
if ($_conf['ktai']) {
echo "<hr>\n<p>新着まとめ読みキャッシュ</p>\n";
} else {
echo "<tr><td colspan=\"2\">\n";
echo "<fieldset>\n<legend>新着まとめ読みキャッシュ</legend>\n";
echo "<ul id=\"matome_cache\">\n";
}
foreach ($matome_cache_list as $cache_key => $cache_info) {
// PC・携帯共通変数
$i++;
$ckey = substr($cache_key, $ckeyprefixlen);
$clink = 'read_new_cache.php?ckey=' . rawurlencode($ckey) . $_conf['k_at_a'];
if ($cache_info['title']) {
$ctitle = $cache_info['title'];
} else {
$ctitle = $ckey;
}
$cnumthreads = count($cache_info['threads']);
if ($_conf['ktai']) {
// キャッシュへのリンク、携帯用
if ($_conf['iphone']) {
$cdate = date('y/m/d H:i', $cache_info['time']);
echo "<p>{$cdate} [<a href=\"{$clink}\">{$ctitle}</a>]</p>";
} else {
$cdate = date('y/m/d G:i', $cache_info['time']);
echo "<p>{$cdate}<br>[<a href=\"{$clink}\">{$ctitle}</a>]</p>";
}
} else {
// キャッシュへのリンク、PC用
$cid = 'matome_cache_meta' . $i;
$cdate = date('Y/m/d H:i:s', $cache_info['time']);
if ($cnumthreads) {
$cpopup_at = " onmouseover=\"showCacheMetaData('{$cid}', event)\"";
$cpopup_at .= " onmouseout=\"hideCacheMetaData('{$cid}')\"";
} else {
$cpopup_at = '';
}
echo "<li><span class=\"matome_cache_date\">{$cdate}</span> ";
echo "[<a href=\"{$clink}\" target=\"read\"{$cpopup_at}>{$ctitle}</a>]";
if ($cnumthreads) {
echo "<div class=\"popup_element\" id=\"{$cid}\"{$cpopup_at}>";
}
}
// まとめ読みに含まれる各スレッドへのリンク
if ($cnumthreads && (!$_conf['ktai'] || $_conf['iphone'])) {
if ($_conf['iphone']) {
$ctarget_at = '';
} else {
$ctarget_at = ' target="read"';
}
echo '<ul>';
foreach ($cache_info['threads'] as $cthread) {
$cthreadlink = $_conf['read_php']
. '?host=' . rawurlencode($cthread['host'])
. '&bbs=' . rawurlencode($cthread['bbs'])
. '&key=' . rawurlencode($cthread['key'])
. '&ls=' . rawurlencode($cthread['ls'])
. '&offline=true' . $_conf['k_at_a'];
echo "<li><a href=\"{$cthreadlink}\"{$ctarget_at}>{$cthread['title']}</a></li>";
}
echo '</ul>';
}
// 閉じタグ、PC用
if (!$_conf['ktai']) {
if ($cnumthreads) {
echo '</div>';
}
echo "</li>\n";
}
}
// 閉じタグ、PC用
if (!$_conf['ktai']) {
echo "</ul>\n";
echo "</fieldset>\n";
echo "</td></tr>\n";
}
}
// }}}
if ($_conf['ktai']) {
echo "<hr><div class=\"center\">{$_conf['k_to_index_ht']}</div>";
} else {
echo "</table>\n";
}
echo '</body></html>';
exit;
//==============================================================================
// 関数
//==============================================================================
// {{{ printEditFileForm()
/**
* 設定ファイル編集ウインドウを開くフォームHTMLをプリントする
*
* @param string $filename 編集するファイル名
* @param string $submit_value submitボタンの値
* @return void
*/
function printEditFileForm($filename, $submit_value)
{
global $_conf;
$path = $_conf['pref_dir'] . '/' . $filename;
if ((file_exists($path) && is_writable($path)) ||
(!file_exists($path) && is_writable(dirname($path)))
) {
$onsubmit = '';
$disabled = '';
} else {
$onsubmit = ' onsubmit="return false;"';
$disabled = ' disabled';
}
$rows = 36; // 18
$cols = 92; // 90
// +Wiki
if ($filename == 'p2_aborn_thread.txt' ||
preg_match('/^p2_(aborn|ng)_(name|mail|id|msg|be)\\.txt$/', $filename))
{
$edit_php = 'edit_aborn_word.php';
$target = '_self';
} else {
$edit_php = 'editfile.php';
$target = 'editfile';
}
$filename_ht = htmlspecialchars($filename, ENT_QUOTES);
$ht = <<<EOFORM
<form action="{$edit_php}" method="GET" target="{$target}" class="inline-form"{$onsubmit}>
{$_conf['k_input_ht']}
<input type="hidden" name="file" value="{$filename_ht}">
<input type="hidden" name="encode" value="Shift_JIS">
<input type="hidden" name="rows" value="{$rows}">
<input type="hidden" name="cols" value="{$cols}">
<input type="submit" value="{$submit_value}"{$disabled}>
</form>\n
EOFORM;
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) {
$ht = ' ' . preg_replace('/>\s+</', '><', $ht);
}
echo $ht;
}
// }}}
// {{{ getSyncFavoritesFormHt()
/**
* ホストの同期用フォームのHTMLを取得する
*
* @param string $path_value 同期するファイルのパス
* @param string $submit_value submitボタンの値
* @return string
*/
function getSyncFavoritesFormHt($path_value, $submit_value)
{
global $_conf;
$ht = <<<EOFORM
<form action="editpref.php" method="POST" target="_self" class="inline-form">
{$_conf['k_input_ht']}
<input type="hidden" name="sync" value="{$path_value}">
<input type="submit" value="{$submit_value}">
</form>\n
EOFORM;
if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false) {
$ht = ' ' . preg_replace('/>\s+</', '><', $ht);
}
return $ht;
}
// }}}
// {{{ getFavSetListFormHt()
/**
* お気に入りセット切り替え・セット名変更用フォームのHTMLを取得する(PC用)
*
* @param string $set_name 内部処理用セット名
* @param string $set_title HTML表示用セット名
* @return string
*/
function getFavSetListFormHt($set_name, $set_title)
{
global $_conf;
if (!($titles = FavSetManager::getFavSetTitles($set_name))) {
$titles = array();
}
$radio_checked = array_fill(0, $_conf['expack.misc.favset_num'] + 1, '');
$i = (isset($_SESSION[$set_name])) ? (int)$_SESSION[$set_name] : 0;
$radio_checked[$i] = ' checked';
$ht = <<<EOFORM
<fieldset>
<legend>{$set_title}</legend>\n
EOFORM;
for ($j = 0; $j <= $_conf['expack.misc.favset_num']; $j++) {
if (!isset($titles[$j]) || strlen($titles[$j]) == 0) {
$titles[$j] = ($j == 0) ? $set_title : $set_title . $j;
}
$ht .= <<<EOFORM
<input type="radio" name="{$set_name}" value="{$j}"{$radio_checked[$j]}>
<input type="text" name="{$set_name}_titles[{$j}]" size="18" value="{$titles[$j]}">
<br>\n
EOFORM;
}
$ht .= <<<EOFORM
</fieldset>\n
EOFORM;
return $ht;
}
// }}}
// {{{ getFavSetListFormHtK()
/**
* お気に入りセット切り替え用フォームのHTMLを取得する(携帯用)
*
* @param string $set_name 内部処理用セット名
* @param string $set_title HTML表示用セット名
* @return string
*/
function getFavSetListFormHtK($set_name, $set_title)
{
global $_conf;
if (!($titles = FavSetManager::getFavSetTitles($set_name))) {
$titles = array();
}
$selected = array_fill(0, $_conf['expack.misc.favset_num'] + 1, '');
$i = (isset($_SESSION[$set_name])) ? (int)$_SESSION[$set_name] : 0;
$selected[$i] = ' selected';
$ht = "<select name=\"{$set_name}\">";
for ($j = 0; $j <= $_conf['expack.misc.favset_num']; $j++) {
if ($j == 0) {
if (!isset($titles[$j]) || strlen($titles[$j]) == 0) {
$titles[$j] = $set_title;
}
$titles[$j] .= ' (デフォルト)';
} else {
if (!isset($titles[$j]) || strlen($titles[$j]) == 0) {
$titles[$j] = $set_title . $j;
}
}
if (!empty($_conf['mobile.save_packet'])) {
$titles[$j] = mb_convert_kana($titles[$j], 'rnsk');
}
$ht .= "<option value=\"{$j}\"{$selected[$j]}>{$titles[$j]}</option>";
}
$ht .= "</select>\n";
return $ht;
}
// }}}
// {{{ updateFavSetList()
/**
* お気に入りセットリストを更新する
*
* @return boolean 更新に成功したらTRUE, 失敗したらFALSE
*/
function updateFavSetList()
{
global $_conf;
if (file_exists($_conf['expack.misc.favset_file'])) {
$setlist_titles = FavSetManager::getFavSetTitles();
} else {
FileCtl::make_datafile($_conf['expack.misc.favset_file']);
}
if (empty($setlist_titles)) {
$setlist_titles = array();
}
$setlist_names = array('m_favlist_set', 'm_favita_set', 'm_rss_set');
foreach ($setlist_names as $setlist_name) {
if (isset($_POST["{$setlist_name}_titles"]) && is_array($_POST["{$setlist_name}_titles"])) {
$setlist_titles[$setlist_name] = array();
for ($i = 0; $i <= $_conf['expack.misc.favset_num']; $i++) {
if (!isset($_POST["{$setlist_name}_titles"][$i])) {
$setlist_titles[$setlist_name][$i] = '';
continue;
}
$newname = trim($_POST["{$setlist_name}_titles"][$i]);
$newname = preg_replace('/\r\n\t/', ' ', $newname);
$newname = htmlspecialchars($newname, ENT_QUOTES);
$setlist_titles[$setlist_name][$i] = $newname;
}
}
}
$newdata = serialize($setlist_titles);
if (FileCtl::file_write_contents($_conf['expack.misc.favset_file'], $newdata) === FALSE) {
P2Util::pushInfoHtml("<p>p2 error: {$_conf['expack.misc.favset_file']} にお気に入りセット設定を書き込めませんでした。");
return FALSE;
}
return TRUE;
}
// }}}
// {{{ compareSkinNames()
/**
* スキンのリストをソートするためのコールバック関数
*
* @param string $a
* @param string $b
* @return int
*/
function compareSkinNames($a, $b)
{
if ($a == 'conf_user_style') {
return -1;
}
if ($b == 'conf_user_style') {
return 1;
}
return strcmp($a, $b);
}
// }}}
/*
* Local Variables:
* mode: php
* coding: cp932
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/
// vim: set syn=php fenc=cp932 ai et ts=4 sw=4 sts=4 fdm=marker: