-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotification.php
More file actions
111 lines (97 loc) · 1.82 KB
/
Notification.php
File metadata and controls
111 lines (97 loc) · 1.82 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
namespace ITE\Js\Notification;
/**
* Class Notification
*
* @author sam0delkin <t.samodelkin@gmail.com>
*/
class Notification
{
const TYPE_SUCCESS = 'success';
const TYPE_INFO = 'info';
const TYPE_WARNING = 'warning';
const TYPE_ERROR = 'error';
/**
* @var string
*/
private $channel;
/**
* @var string
*/
private $type;
/**
* @var string
*/
private $message;
/**
* @var string
*/
private $title;
/**
* @var array
*/
private $options;
/**
* @param string $channel
* @param string $type
* @param string $message
* @param string $title
* @param array $options
*/
public function __construct($channel, $type, $message, $title, array $options = [])
{
$this->channel = $channel;
$this->type = $type;
$this->message = $message;
$this->title = $title;
$this->options = $options;
}
/**
* @return string
*/
public function getChannel()
{
return $this->channel;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* @return string
*/
public function getMessage()
{
return $this->message;
}
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @return array
*/
public function getOptions()
{
return $this->options;
}
/**
* @return array
*/
public function toArray()
{
return [
'channel' => $this->channel,
'type' => $this->type,
'message' => $this->message,
'title' => $this->title,
'options' => $this->options
];
}
}