Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 3.3332 |
Changes | 0 |
1 | <?php |
||
17 | 2 | public function enabledAsLabel(): string |
|
18 | { |
||
19 | // Avoid showing enabled state if there is an invitation pending |
||
20 | 2 | if ($this->user->invitation) { |
|
21 | return ''; |
||
22 | } |
||
23 | |||
24 | 2 | return $this->user->isEnabled() |
|
25 | ? '' |
||
26 | 2 | : '<span class="label label--error">Gebruiker is geblokkeerd.</span>'; |
|
27 | } |
||
29 |