Completed
Push — develop ( c603db...77b219 )
by
unknown
16:24 queued 08:23
created

UserStatus::init()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
/**
3
 * YAWIK
4
 *
5
 * @filesource
6
 * @copyright (c) 2013 - 2016 Cross Solution (http://cross-solution.de)
7
 * @license   MIT
8
 */
9
10
/**  */
11
namespace Auth\Form;
12
13
use Core\Form\SummaryForm;
14
15
class UserStatus extends SummaryForm
16
{
17
    protected $wrapElements = false;
18
    protected $baseFieldset = 'Auth/UserStatusFieldset';
19
20
    
21
    /**
22
     * {@inheritDoc}
23
     */
24
    protected $displayMode = self::DISPLAY_SUMMARY;
25
    
26
    public function init()
27
    {
28
        $this->setLabel(/*@translate*/ 'status');
29
        parent::init();
30
    }
31
}
32