OSDN Git Service

BugTrack/2436 ESLint - Linting utility for JavaScript
[pukiwiki/pukiwiki.git] / plugin / calendar_edit.inc.php
1 <?php
2 // PukiWiki - Yet another WikiWikiWeb clone.
3 // $Id: calendar_edit.inc.php,v 1.10 2005/05/04 05:07:51 henoheno Exp $
4 // Copyright (C)
5 //   2003,2005 PukiWiki Developers Team
6 //   2001-2002 Originally written by yu-ji
7 // License: GPL v2 or (at your option) any later version
8 //
9 // Calendar_ edit plugin (needs calendar plugin)
10
11 function plugin_calendar_edit_convert()
12 {
13         global $command;
14
15         if (! file_exists(PLUGIN_DIR . 'calendar.inc.php')) return FALSE;
16
17         require_once PLUGIN_DIR . 'calendar.inc.php';
18         if (! function_exists('plugin_calendar_convert')) return FALSE;
19
20         $command = 'edit';
21         $args = func_num_args() ? func_get_args() : array();
22         return call_user_func_array('plugin_calendar_convert', $args);
23 }
24 ?>