OSDN Git Service

[[pukiwiki:BugTrack/2]] 各プラグインに$Id$を追加
[pukiwiki/pukiwiki.git] / plugin / calendar_read.inc.php
1 <?
2 // $Id: calendar_read.inc.php,v 1.3 2002/06/26 06:23:57 masui Exp $
3
4 function plugin_calendar_read_convert()
5 {
6         global $command;
7         
8         $command = read;
9
10         if(func_num_args())
11                 $aryargs = func_get_args();
12         else
13                 $aryargs = array();
14         
15         if(file_exists(PLUGIN_DIR."calendar.inc.php"))
16         {
17                 require_once PLUGIN_DIR."calendar.inc.php";
18                 return call_user_func_array("plugin_calendar_convert",$aryargs);
19         }
20         else
21         {
22                 return FALSE;
23         }
24 }
25 ?>