blob: f7195ac35db8c5a0aa0efbf51ec4a35b456b9fae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
use dokuwiki\Extension\Plugin;
/**
* DokuWiki Plugin extension (Helper Component)
*
* This component currently does nothing, except giving access to common plugin functionality
* like getLang() to be used in the plugin classes.
*
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
*/
class helper_plugin_extension extends Plugin
{
}
|