File size: 787 Bytes
d2897cd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php

namespace Mautic\LeadBundle\Segment\DoNotContact;

use Mautic\LeadBundle\Entity\DoNotContact;

class DoNotContactParts
{
    private string $channel = 'email';

    private int $type = DoNotContact::UNSUBSCRIBED;

    public function __construct(?string $field)
    {
        if ($field && str_contains($field, '_manual')) {
            $this->type = DoNotContact::MANUAL;
        }

        if ($field && str_contains($field, '_bounced')) {
            $this->type = DoNotContact::BOUNCED;
        }

        if ($field && str_contains($field, '_sms')) {
            $this->channel = 'sms';
        }
    }

    public function getChannel(): string
    {
        return $this->channel;
    }

    public function getParameterType(): int
    {
        return $this->type;
    }
}