Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
portalverifylimit.php
1<?php
3
5{
9 public function getCurrent()
10 {
11 return 1;
12 }
13
17 public function getLimit()
18 {
19 $limit = parent::getLimit() ?: 1000;
20 return $this->isVerifiedSender() ? $limit : 0;
21 }
22
26 public function setLimit($limit)
27 {
28 }
29
30 protected function isVerifiedSender(): bool
31 {
33 }
34}