OSDN Git Service

MASUI'z Edition first beta release
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
1 <?
2 function plugin_calendar_edit_convert()
3 {
4         global $command;
5         
6         $command = edit;
7
8         if(func_num_args())
9                 $aryargs = func_get_args();
10         else
11                 $aryargs = array();
12
13         
14         if(file_exists(PLUGIN_DIR."calendar.inc.php"))
15         {
16                 require_once PLUGIN_DIR."calendar.inc.php";
17                 return call_user_func_array("plugin_calendar_convert",$aryargs);
18         }
19         else
20         {
21                 return FALSE;
22         }
23 }
24 ?>