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

DatetimeStatusEnum::getValues()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 26

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 26
rs 9.504
c 0
b 0
f 0
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