1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
updateeventcommand.php
См. документацию.
1<?php
2
3namespace Bitrix\Calendar\Application\Command;
4
6{
7 private bool $checkLocationOccupancy;
8 private int $requestUid;
9 private bool $sendInvitesAgain;
10 private array $ufFields;
11 private ?string $currentDateFrom;
12 private ?string $recEditMode;
13 private ?array $newAttendeesList;
14 private bool $checkCurrentUsersAccessibility;
15 private bool $isPlannerFeatureEnabled;
16 private bool $hideGuests;
17 private bool $allowInvite;
18 private bool $meetingReinvite;
19 private bool $meetingNotify;
20 private ?string $excludeUsers;
21 private ?array $attendeesEntityList;
22 private int $chatId;
23 private ?int $meetingHost;
24 private array $remindList;
25 private string $location;
26 private ?array $rrule;
27 private bool $private;
28 private string $importance;
29 private ?string $accessibility;
30 private ?string $color;
31 private string $description;
32 private string $name;
33 private string $timeZoneTo;
34 private string $timeZoneFrom;
35 private bool $skipTime;
36 private string $dateTo;
37 private string $dateFrom;
38 private int $sectionId;
39 private int $userId;
40 private int $id;
41 private ?int $maxAttendees;
42
43 public function __construct(
44 int $id,
45 int $userId,
46 int $sectionId,
47 string $dateFrom,
48 string $dateTo,
49 bool $skipTime,
50 string $timeZoneFrom,
51 string $timeZoneTo,
52 string $name,
53 string $description,
54 ?string $color,
55 ?string $accessibility,
56 string $importance,
57 bool $private,
58 ?array $rrule,
59 string $location,
60 array $remindList,
61 ?int $meetingHost,
62 int $chatId,
63 ?array $attendeesEntityList,
64 ?string $excludeUsers,
65 bool $meetingNotify,
66 bool $meetingReinvite,
67 bool $allowInvite,
68 bool $hideGuests,
69 bool $isPlannerFeatureEnabled,
70 bool $checkCurrentUsersAccessibility,
71 ?array $newAttendeesList,
72 ?string $recEditMode,
73 ?string $currentDateFrom,
74 array $ufFields,
75 bool $sendInvitesAgain,
76 int $requestUid,
77 bool $checkLocationOccupancy,
78 ?int $maxAttendees,
79 )
80 {
81 $this->id = $id;
82 $this->userId = $userId;
83 $this->sectionId = $sectionId;
84 $this->dateFrom = $dateFrom;
85 $this->dateTo = $dateTo;
86 $this->skipTime = $skipTime;
87 $this->timeZoneFrom = $timeZoneFrom;
88 $this->timeZoneTo = $timeZoneTo;
89 $this->name = $name;
90 $this->description = $description;
91 $this->color = $color;
92 $this->accessibility = $accessibility;
93 $this->importance = $importance;
94 $this->private = $private;
95 $this->rrule = $rrule;
96 $this->location = $location;
97 $this->remindList = $remindList;
98 $this->meetingHost = $meetingHost;
99 $this->chatId = $chatId;
100 $this->attendeesEntityList = $attendeesEntityList;
101 $this->excludeUsers = $excludeUsers;
102 $this->meetingNotify = $meetingNotify;
103 $this->meetingReinvite = $meetingReinvite;
104 $this->allowInvite = $allowInvite;
105 $this->hideGuests = $hideGuests;
106 $this->isPlannerFeatureEnabled = $isPlannerFeatureEnabled;
107 $this->checkCurrentUsersAccessibility = $checkCurrentUsersAccessibility;
108 $this->newAttendeesList = $newAttendeesList;
109 $this->recEditMode = $recEditMode;
110 $this->currentDateFrom = $currentDateFrom;
111 $this->ufFields = $ufFields;
112 $this->sendInvitesAgain = $sendInvitesAgain;
113 $this->requestUid = $requestUid;
114 $this->checkLocationOccupancy = $checkLocationOccupancy;
115 $this->maxAttendees = $maxAttendees;
116 }
117
118 public function isCheckLocationOccupancy(): bool
119 {
120 return $this->checkLocationOccupancy;
121 }
122
123 public function getRequestUid(): int
124 {
125 return $this->requestUid;
126 }
127
128 public function isSendInvitesAgain(): bool
129 {
130 return $this->sendInvitesAgain;
131 }
132
133 public function getUfFields(): array
134 {
135 return $this->ufFields;
136 }
137
138 public function getCurrentDateFrom(): ?string
139 {
140 return $this->currentDateFrom;
141 }
142
143 public function getRecEditMode(): ?string
144 {
145 return $this->recEditMode;
146 }
147
148 public function getNewAttendeesList(): ?array
149 {
150 return $this->newAttendeesList;
151 }
152
153 public function isCheckCurrentUsersAccessibility(): bool
154 {
155 return $this->checkCurrentUsersAccessibility;
156 }
157
158 public function isPlannerFeatureEnabled(): bool
159 {
160 return $this->isPlannerFeatureEnabled;
161 }
162
163 public function isHideGuests(): bool
164 {
165 return $this->hideGuests;
166 }
167
168 public function isAllowInvite(): bool
169 {
170 return $this->allowInvite;
171 }
172
173 public function isMeetingReinvite(): bool
174 {
175 return $this->meetingReinvite;
176 }
177
178 public function isMeetingNotify(): bool
179 {
180 return $this->meetingNotify;
181 }
182
183 public function getExcludeUsers(): ?string
184 {
185 return $this->excludeUsers;
186 }
187
188 public function getAttendeesEntityList(): ?array
189 {
190 return $this->attendeesEntityList;
191 }
192
193 public function getChatId(): int
194 {
195 return $this->chatId;
196 }
197
198 public function getMeetingHost(): ?int
199 {
200 return $this->meetingHost;
201 }
202
203 public function getRemindList(): array
204 {
205 return $this->remindList;
206 }
207
208 public function getLocation(): string
209 {
210 return $this->location;
211 }
212
213 public function getRrule(): ?array
214 {
215 return $this->rrule;
216 }
217
218 public function isPrivate(): bool
219 {
220 return $this->private;
221 }
222
223 public function getImportance(): string
224 {
225 return $this->importance;
226 }
227
228 public function getAccessibility(): ?string
229 {
230 return $this->accessibility;
231 }
232
233 public function getColor(): ?string
234 {
235 return $this->color;
236 }
237
238 public function getDescription(): string
239 {
240 return $this->description;
241 }
242
243 public function getName(): string
244 {
245 return $this->name;
246 }
247
248 public function getTimeZoneTo(): string
249 {
250 return $this->timeZoneTo;
251 }
252
253 public function getTimeZoneFrom(): string
254 {
255 return $this->timeZoneFrom;
256 }
257
258 public function isSkipTime(): bool
259 {
260 return $this->skipTime;
261 }
262
263 public function getDateTo(): string
264 {
265 return $this->dateTo;
266 }
267
268 public function getDateFrom(): string
269 {
270 return $this->dateFrom;
271 }
272
273 public function getSectionId(): int
274 {
275 return $this->sectionId;
276 }
277
278 public function getUserId(): int
279 {
280 return $this->userId;
281 }
282
283 public function getId(): int
284 {
285 return $this->id;
286 }
287
288 public function getMaxAttendees(): ?int
289 {
290 return $this->maxAttendees;
291 }
292
293 public function getAnalyticsSubSection(): ?string
294 {
295 return $this->analyticsSubSection;
296 }
297
298 public function getAnalyticsChatId(): ?int
299 {
300 return $this->analyticsChatId;
301 }
302}
if(!is_object($USER)||! $USER->IsAuthorized()) $userId
Определения check_mail.php:18
__construct(int $id, int $userId, int $sectionId, string $dateFrom, string $dateTo, bool $skipTime, string $timeZoneFrom, string $timeZoneTo, string $name, string $description, ?string $color, ?string $accessibility, string $importance, bool $private, ?array $rrule, string $location, array $remindList, ?int $meetingHost, int $chatId, ?array $attendeesEntityList, ?string $excludeUsers, bool $meetingNotify, bool $meetingReinvite, bool $allowInvite, bool $hideGuests, bool $isPlannerFeatureEnabled, bool $checkCurrentUsersAccessibility, ?array $newAttendeesList, ?string $recEditMode, ?string $currentDateFrom, array $ufFields, bool $sendInvitesAgain, int $requestUid, bool $checkLocationOccupancy, ?int $maxAttendees,)
Определения updateeventcommand.php:43
</td ></tr ></table ></td ></tr >< tr >< td class="bx-popup-label bx-width30"><?=GetMessage("PAGE_NEW_TAGS")?> array( $site)
Определения file_new.php:804
background color
Определения file_new.php:745
if(Loader::includeModule( 'bitrix24')) elseif(Loader::includeModule('intranet') &&CIntranetUtils::getPortalZone() !=='ru') $description
Определения .description.php:24
$name
Определения menu_edit.php:35
$location
Определения options.php:2729