1 2 3 4 5 6 7 8 9 10 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; }