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