[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Extension/ -> Plugin.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\Extension;
   4  
   5  /**
   6   * DokuWiki Base Plugin
   7   *
   8   * Most plugin types inherit from this class
   9   */
  10  abstract class Plugin implements PluginInterface
  11  {
  12      use PluginTrait;
  13  }