[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/Action/ -> Media.php (source)

   1  <?php
   2  
   3  namespace dokuwiki\Action;
   4  
   5  /**
   6   * Class Media
   7   *
   8   * The full screen media manager
   9   *
  10   * @package dokuwiki\Action
  11   */
  12  class Media extends AbstractAction
  13  {
  14      /** @inheritdoc */
  15      public function minimumPermission()
  16      {
  17          return AUTH_READ;
  18      }
  19  
  20      /** @inheritdoc */
  21      public function tplContent()
  22      {
  23          tpl_media();
  24      }
  25  }