aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Action/Media.php
blob: 0571af85513e4751ed47c822301894dfaa3ef5ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

namespace dokuwiki\Action;

/**
 * Class Media
 *
 * The full screen media manager
 *
 * @package dokuwiki\Action
 */
class Media extends AbstractAction
{
    /** @inheritdoc */
    public function minimumPermission()
    {
        return AUTH_READ;
    }

    /** @inheritdoc */
    public function tplContent()
    {
        tpl_media();
    }
}