Completed
Push — master ( 13ce47...b2c9cd )
by Andreas
10:39 queued 06:48
created

AbstractUserAction::checkPreconditions()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 2
nop 0
dl 0
loc 7
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
namespace dokuwiki\Action;
4
5
use dokuwiki\Action\Exception\ActionUserRequiredException;
6
7
/**
8
 * Class AbstractUserAction
9
 *
10
 * An action that requires a logged in user
11
 *
12
 * @package dokuwiki\Action
13
 */
14
abstract class AbstractUserAction extends AbstractAclAction {
15
16
    /** @inheritdoc */
17
    public function checkPreconditions() {
18
        parent::checkPreconditions();
19
        global $INPUT;
20
        if(!$INPUT->server->str('REMOTE_USER')) {
21
            throw new ActionUserRequiredException();
22
        }
23
    }
24
25
}
26