1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace NotificationChannels\OneSignal\Traits\Categories; |
4
|
|
|
|
5
|
|
|
trait AttachmentHelpers |
6
|
|
|
{ |
7
|
|
|
/** |
8
|
|
|
* Set an Image/more than one Image only for iOS. |
9
|
|
|
* |
10
|
|
|
* @param string|array $imageUrl |
11
|
|
|
* |
12
|
|
|
* @return $this |
13
|
|
|
*/ |
14
|
1 |
|
public function setIosAttachment($imageUrl) |
15
|
|
|
{ |
16
|
1 |
|
$imageUrl = is_array($imageUrl) ? $imageUrl : ['id1' => $imageUrl]; |
17
|
|
|
|
18
|
1 |
|
return $this->setParameter('ios_attachments', $imageUrl); |
|
|
|
|
19
|
|
|
} |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Set the Big Picture Image only for Android. |
23
|
|
|
* |
24
|
|
|
* @param string $imageUrl |
25
|
|
|
* |
26
|
|
|
* @return $this |
27
|
|
|
*/ |
28
|
1 |
|
public function setAndroidBigPicture(string $imageUrl) |
29
|
|
|
{ |
30
|
1 |
|
return $this->setParameter('big_picture', $imageUrl); |
|
|
|
|
31
|
|
|
} |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* Set the Big Picture Image only for FireOS (Amazon). |
35
|
|
|
* |
36
|
|
|
* @param string $imageUrl |
37
|
|
|
* |
38
|
|
|
* @return $this |
39
|
|
|
*/ |
40
|
1 |
|
public function setAmazonBigPicture(string $imageUrl) |
41
|
|
|
{ |
42
|
1 |
|
return $this->setParameter('adm_big_picture', $imageUrl); |
|
|
|
|
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
/** |
46
|
|
|
* Set the Big Picture Image only for Chrome. |
47
|
|
|
* |
48
|
|
|
* @param string $imageUrl |
49
|
|
|
* |
50
|
|
|
* @return $this |
51
|
|
|
*/ |
52
|
1 |
|
public function setChromeBigPicture(string $imageUrl) |
53
|
|
|
{ |
54
|
1 |
|
return $this->setParameter('chrome_big_picture', $imageUrl); |
|
|
|
|
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
/** |
58
|
|
|
* Set the Web Image only for Chrome. |
59
|
|
|
* |
60
|
|
|
* @param string $imageUrl |
61
|
|
|
* |
62
|
|
|
* @return $this |
63
|
|
|
*/ |
64
|
1 |
|
public function setChromeWebImage(string $imageUrl) |
65
|
|
|
{ |
66
|
1 |
|
return $this->setParameter('chrome_web_image', $imageUrl); |
|
|
|
|
67
|
|
|
} |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* Set the additional URL for all Platforms. |
71
|
|
|
* |
72
|
|
|
* @param string $url |
73
|
|
|
* |
74
|
|
|
* @return $this |
75
|
|
|
*/ |
76
|
10 |
|
public function setUrl(string $url) |
77
|
|
|
{ |
78
|
10 |
|
return $this->setParameter('url', $url); |
|
|
|
|
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Set an image to all possible attachment variables. |
83
|
|
|
* |
84
|
|
|
* @param string $imageUrl |
85
|
|
|
* |
86
|
|
|
* @return $this |
87
|
|
|
*/ |
88
|
1 |
|
public function setImageAttachments(string $imageUrl) |
89
|
|
|
{ |
90
|
1 |
|
return $this->setIosAttachment($imageUrl) |
91
|
1 |
|
->setAndroidBigPicture($imageUrl) |
92
|
1 |
|
->setAmazonBigPicture($imageUrl) |
93
|
1 |
|
->setChromeBigPicture($imageUrl) |
94
|
1 |
|
->setChromeWebImage($imageUrl); |
95
|
|
|
} |
96
|
|
|
} |
97
|
|
|
|
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.