1 | <?php |
||
16 | class MPNSTile extends MPNSBase |
||
17 | { |
||
18 | const MESSAGE_TYPE = 'tile'; |
||
19 | |||
20 | const DELAY_INTERVAL_IMMEDIATE = 1; |
||
21 | const DELAY_INTERVAL_450 = 11; |
||
22 | const DELAY_INTERVAL_900 = 21; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $title; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $backgroundImage; |
||
33 | |||
34 | /** |
||
35 | * @var int |
||
36 | */ |
||
37 | private $count; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | private $backTitle; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | private $backBackgroundImage; |
||
48 | |||
49 | /** |
||
50 | * @var string |
||
51 | */ |
||
52 | private $backContent; |
||
53 | |||
54 | /** |
||
55 | * @return string |
||
56 | */ |
||
57 | public function getBackBackgroundImage() |
||
61 | |||
62 | /** |
||
63 | * @param string $backBackgroundImage |
||
64 | * @return $this |
||
65 | */ |
||
66 | public function setBackBackgroundImage($backBackgroundImage) |
||
71 | |||
72 | /** |
||
73 | * @return string |
||
74 | */ |
||
75 | public function getBackContent() |
||
79 | |||
80 | /** |
||
81 | * @param string $backContent |
||
82 | * @return $this |
||
83 | */ |
||
84 | public function setBackContent($backContent) |
||
89 | |||
90 | /** |
||
91 | * @return string |
||
92 | */ |
||
93 | public function getBackTitle() |
||
97 | |||
98 | /** |
||
99 | * @param string $backTitle |
||
100 | * @return $this |
||
101 | */ |
||
102 | public function setBackTitle($backTitle) |
||
107 | |||
108 | /** |
||
109 | * @return string |
||
110 | */ |
||
111 | public function getBackgroundImage() |
||
115 | |||
116 | /** |
||
117 | * @param string $backgroundImage |
||
118 | * @return $this |
||
119 | */ |
||
120 | public function setBackgroundImage($backgroundImage) |
||
125 | |||
126 | /** |
||
127 | * @return int |
||
128 | */ |
||
129 | public function getCount() |
||
133 | |||
134 | /** |
||
135 | * @param int $count |
||
136 | * @return $this |
||
137 | */ |
||
138 | public function setCount($count) |
||
143 | |||
144 | /** |
||
145 | * @return string |
||
146 | */ |
||
147 | public function getTitle() |
||
151 | |||
152 | /** |
||
153 | * @param string $title |
||
154 | * @return $this |
||
155 | */ |
||
156 | public function setTitle($title) |
||
161 | } |
||
162 |