Completed
Branch EDTR/master (af42c6)
by
unknown
50:36 queued 42:13
created

DatetimeStatusEnum   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 45
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 45
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 6 1
A getValues() 0 26 1
1
<?php
2
3
namespace EventEspresso\core\domain\services\graphql\enums;
4
5
use EE_Datetime;
6
use EventEspresso\core\services\graphql\enums\EnumBase;
7
8
/**
9
 * Class DatetimeStatusEnum
10
 * Description
11
 *
12
 * @package EventEspresso\core\domain\services\graphql\enums
13
 * @author  Manzoor Wani
14
 * @since   $VID:$
15
 */
16
class DatetimeStatusEnum extends EnumBase
17
{
18
19
    /**
20
     * DatetimeStatusEnum constructor.
21
     */
22
    public function __construct()
23
    {
24
        $this->setName($this->namespace . 'DatetimeStatusEnum');
25
        $this->setDescription(esc_html__('Datetime status', 'event_espresso'));
26
        parent::__construct();
27
    }
28
29
30
    /**
31
     * @return array
32
     * @since $VID:$
33
     */
34
    protected function getValues()
35
    {
36
        return [
37
            'SOLD_OUT'     => [
38
                'value'       => EE_Datetime::sold_out,
39
            ],
40
            'ACTIVE'     => [
41
                'value'       => EE_Datetime::active,
42
            ],
43
            'UPCOMING'     => [
44
                'value'       => EE_Datetime::upcoming,
45
            ],
46
            'POSTPONED'     => [
47
                'value'       => EE_Datetime::postponed,
48
            ],
49
            'CANCELLED'     => [
50
                'value'       => EE_Datetime::cancelled,
51
            ],
52
            'EXPIRED'     => [
53
                'value'       => EE_Datetime::expired,
54
            ],
55
            'INACTIVE'     => [
56
                'value'       => EE_Datetime::inactive,
57
            ],
58
        ];
59
    }
60
}
61