Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
CheckMessageDisappearingDuration.php
1<?php
2
4
10
12{
13 public function onBeforeAction(Event $event)
14 {
15 $arguments = $this->getAction()->getArguments();
16 $hours = $arguments['hours'];
17 if (is_numeric($hours) && (int)$hours > 0 && in_array($hours, DisappearService::TIME_WHITELIST))
18 {
19 return null;
20 }
21
22 $this->addError(new ChatError(ChatError::WRONG_DISAPPEARING_DURATION, 'Wrong disappearing duration'));
23 return new EventResult(EventResult::ERROR, null, null, $this);
24 }
25}