diff options
Diffstat (limited to 'wiki/inc/Plugin.php')
-rw-r--r-- | wiki/inc/Plugin.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wiki/inc/Plugin.php b/wiki/inc/Plugin.php new file mode 100644 index 0000000..9cd0ae8 --- /dev/null +++ b/wiki/inc/Plugin.php @@ -0,0 +1,11 @@ +<?php + +/** + * DokuWiki Plugin + * + * Most of DokuWiki's plugin types simply inherit from this. All it does is + * add the DokuWiki_PluginTrait to the class. + */ +class DokuWiki_Plugin implements DokuWiki_PluginInterface { + use DokuWiki_PluginTrait; +} |