File: Plugin.php

package info (click to toggle)
dokuwiki 0.0.20180422.a-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,624 kB
  • sloc: php: 175,386; sh: 665; xml: 403; perl: 216; makefile: 70
file content (11 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (2)
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;
}