Révision | 5e64bfbddcd307810b58966d69d29d5e1863f08d (tree) |
---|---|
l'heure | 2004-08-10 21:56:30 |
Auteur | henoheno <henoheno> |
Commiter | henoheno |
Cleanup and shrink a little. Aligh the order
@@ -1,7 +1,7 @@ | ||
1 | 1 | <?php |
2 | 2 | /* |
3 | 3 | * PukiWiki calendar_viewerプラグイン |
4 | - * $Id: calendar_viewer.inc.php,v 1.16 2004/08/10 12:50:20 henoheno Exp $ | |
4 | + * $Id: calendar_viewer.inc.php,v 1.17 2004/08/10 12:56:30 henoheno Exp $ | |
5 | 5 | * calendarrecentプラグインを元に作成 |
6 | 6 | */ |
7 | 7 |
@@ -43,20 +43,15 @@ function plugin_calendar_viewer_convert() | ||
43 | 43 | global $_msg_calendar_viewer_right, $_msg_calendar_viewer_left; |
44 | 44 | global $_msg_calendar_viewer_restrict; |
45 | 45 | |
46 | - // *デフォルト値をセット | |
47 | - // 基準となるページ名 | |
48 | - $pagename = ''; | |
49 | - // 表示する件数制限 | |
50 | - $limit_page = 7; | |
51 | - // 一覧表示する年月 | |
52 | - $date_YM = ''; | |
53 | - // 動作モード | |
54 | - $mode = 'past'; | |
55 | - // 日付のセパレータ calendar2なら'-' calendarなら'' | |
56 | - $date_sep = '-'; | |
46 | + // デフォルト値 | |
47 | + $pagename = ''; // 基準となるページ名 | |
48 | + $limit_page = 7; // 表示する件数制限 | |
49 | + $date_YM = ''; // 一覧表示する年月 | |
50 | + $mode = 'past'; // 動作モード | |
51 | + $date_sep = '-'; // 日付のセパレータ calendar2なら'-' calendarなら'' | |
57 | 52 | |
58 | 53 | |
59 | - // *引数の確認 | |
54 | + // 引数の確認 | |
60 | 55 | if (func_num_args() >= 2){ |
61 | 56 | $func_vars_array = func_get_args(); |
62 | 57 |
@@ -77,15 +72,15 @@ function plugin_calendar_viewer_convert() | ||
77 | 72 | $limit_page = 31; |
78 | 73 | } else if (preg_match('/^[0-9]+$/', $func_vars_array[1])){ |
79 | 74 | // n日分表示 |
80 | - $limit_pitch = $func_vars_array[1]; | |
75 | + $page_YM = ''; | |
81 | 76 | $limit_page = $limit_pitch; |
82 | 77 | $limit_base = 0; |
83 | - $page_YM = ''; | |
78 | + $limit_pitch = $func_vars_array[1]; | |
84 | 79 | } else if (preg_match('/([0-9]+)\*([0-9]+)/', $func_vars_array[1], $reg_array)){ |
85 | - $limit_pitch = $reg_array[2]; | |
86 | - $limit_page = $reg_array[1] + $limit_pitch; | |
87 | - $limit_base = $reg_array[1]; | |
88 | 80 | $page_YM = ''; |
81 | + $limit_base = $reg_array[1]; | |
82 | + $limit_page = $reg_array[1] + $limit_pitch; | |
83 | + $limit_pitch = $reg_array[2]; | |
89 | 84 | } else { |
90 | 85 | return $_err_calendar_viewer_param2; |
91 | 86 | } |