xref: /dokuwiki/inc/Menu/Item/Subscribe.php (revision 54cc7aa41e0f453bd6887b0e79242a139d84a47a)
1<?php
2
3namespace dokuwiki\Menu\Item;
4
5/**
6 * Class Subscribe
7 *
8 * Access the subscription management view
9 */
10class Subscribe extends AbstractItem
11{
12
13    /** @inheritdoc */
14    public function __construct()
15    {
16        global $INPUT;
17        parent::__construct();
18
19        if (!$INPUT->server->str('REMOTE_USER')) {
20            throw new \RuntimeException("subscribe is only for logged in users");
21        }
22
23        $this->svg = DOKU_INC . 'lib/images/menu/09-subscribe_email-outline.svg';
24    }
25
26}
27