forked from LibreBooking/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ManageRemindersPage.php
142 lines (119 loc) · 2.57 KB
/
ManageRemindersPage.php
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
/**
Part of phpScheduleIt
written by Stephen Oliver
add this file to /Pages/Admin
*/
require_once(ROOT_DIR . 'Pages/Admin/AdminPage.php');
require_once(ROOT_DIR . 'Presenters/Admin/ManageRemindersPresenter.php');
interface IManageRemindersPage extends IActionPage
{
/**
* @abstract
* @return int
*/
public function GetReminderId();
/**
* @abstract
* @return string
*/
public function GetUserId();
/**
* @abstract
* @return string
*/
public function GetMessage();
/**
* @abstract
* @return Date
*/
public function GetSendtime();
/**
* @abstract
* @return string
*/
public function GetAddress();
/**
* @abstract
* @return string
*/
public function GetRefNumber();
/**
* @abstract
* @param $reminders ReminderDto[]
* @return void
*/
public function BindReminders($reminders);
}
class ManageRemindersPage extends ActionPage implements IManageRemindersPage
{
/**
* @var ManageRemindersPresenter
*/
private $presenter;
public function __construct()
{
parent::__construct('ManageReminders', 1);
$this->presenter = new ManageRemindersPresenter($this, new ReminderRepository());
}
public function ProcessPageLoad()
{
$this->presenter->PageLoad();
$this->Display('Admin/manage_reminders.tpl');
}
public function BindReminders($reminders)
{
$this->Set('reminders', $reminders);
}
public function ProcessAction()
{
$this->presenter->ProcessAction();
}
/**
* @return int
*/
public function GetReminderId()
{
return $this->GetQuerystring(QueryStringKeys::REMINDER_ID);
}
/**
* @return string
*/
public function GetUserId()
{
$user = ServiceLocator::GetServer()->GetUserSession();
return $user->Email;
}
/**
* @return string
*/
public function GetMessage()
{
return $this->GetForm(FormKeys::REMINDER_MESSAGE);
}
/**
* @return Date
*/
public function GetSendtime()
{
return $this->GetForm(FormKeys::REMINDER_SENDTIME);
}
/**
* @return string
*/
public function GetAddress()
{
return $this->GetForm(FormKeys::REMINDER_ADDRESS);
}
/**
* @return string
*/
public function GetRefNumber()
{
return $this->GetForm(FormKeys::REMINDER_REFNUMBER);
}
public function ProcessDataRequest($dataRequest)
{
// no-op
}
}