• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision6cac38260a0315d3967d3d9762150cbe4cb36b15 (tree)
Time2005-02-08 23:04:05
Authorhenoheno <henoheno>
Commiterhenoheno

Log Message

Added stationary plugin. This is just a stationary

Change Summary

Incremental Difference

--- /dev/null
+++ b/plugin/stationary.inc.php
@@ -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+?>