-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.php
More file actions
81 lines (67 loc) · 1.69 KB
/
example.php
File metadata and controls
81 lines (67 loc) · 1.69 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
<?php
interface NotificationBehavior
{
public function notify();
}
class DefaultNotification implements NotificationBehavior
{
public function notify()
{
echo 'We just notified user by default method';
}
}
class SmsNotification implements NotificationBehavior
{
public function notify()
{
echo 'We sent sms to user';
}
}
class MailingNotification implements NotificationBehavior
{
public function notify()
{
echo 'We sent an email to user';
}
}
class User
{
private $notificationMethod;
public function __construct()
{
$this->notificationMethod = new DefaultNotification();
}
public function setNotificationMethodAfterUpdate(NotificationBehavior $notification)
{
$this->notificationMethod = $notification;
}
public function notify()
{
$this->notificationMethod->notify();
}
}
if (isset($_POST['frequency_form'])) {
$frequency = $_POST['frequency_form'];
$user = new User();
switch ($frequency) {
case 'Annual' :
$user->setNotificationMethodAfterUpdate(new MailingNotification());
break;
case 'HaventActive':
$user->setNotificationMethodAfterUpdate(new SmsNotification());
break;
default:
break;
}
$user->notify();
}
?>
<hr>
<form method="post" action="/example.php" name="isset($_POST['frequency_form'])">
<label for="">
Choose your subscription type:
</label>
<input type="submit" value="Normal" name="frequency_form">
<input type="submit" value="Annual" name="frequency_form">
<input type="submit" value="HaventActive" name="frequency_form"">
</form>