Revision | 6cac38260a0315d3967d3d9762150cbe4cb36b15 (tree) |
---|---|
Time | 2005-02-08 23:04:05 |
Author | henoheno <henoheno> |
Commiter | henoheno |
Added stationary plugin. This is just a stationary
@@ -0,0 +1,30 @@ | ||
1 | +<?php | |
2 | +// $Id: stationary.inc.php,v 1.1 2005/02/08 14:04:05 henoheno Exp $ | |
3 | +// | |
4 | +// Stationary plugin | |
5 | +// License: The same as PukiWiki | |
6 | + | |
7 | +// Someting define | |
8 | +define('PLUGIN_STATIONARY_MAX', 10); | |
9 | + | |
10 | +function plugin_stationary_init() | |
11 | +{ | |
12 | + | |
13 | +} | |
14 | + | |
15 | +function plugin_stationary_convert() | |
16 | +{ | |
17 | + return '#stationary()' . '</br>' ."\n"; | |
18 | +} | |
19 | + | |
20 | +function plugin_stationary_inline() | |
21 | +{ | |
22 | + return '&stationary();'; | |
23 | +} | |
24 | + | |
25 | +function plugin_stationary_action() | |
26 | +{ | |
27 | + die_message('stationary'); | |
28 | +} | |
29 | + | |
30 | +?> |