OSDN Git Service

Cleankup. Remove redundant tabs and spaces with sed 's/[ ][ ]*$//'
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
1 <?php
2 /////////////////////////////////////////////////
3 // PukiWiki - Yet another WikiWikiWeb clone.
4 //
5 // $Id: calendar_edit.inc.php,v 1.7 2004/07/31 03:09:20 henoheno Exp $
6 //
7
8 function plugin_calendar_edit_convert()
9 {
10         global $command;
11
12         $command = 'edit';
13
14         if (!file_exists(PLUGIN_DIR.'calendar.inc.php'))
15         {
16                 return FALSE;
17         }
18         require_once PLUGIN_DIR.'calendar.inc.php';
19         if (!function_exists('plugin_calendar_convert'))
20         {
21                 return FALSE;
22         }
23
24         $args = func_num_args() ? func_get_args() : array();
25         return call_user_func_array('plugin_calendar_convert',$args);
26 }
27 ?>