Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
currentusertrait.php
1<?php
2
4
5trait CurrentUserTrait
6{
7 private function hasCurrentUser(): bool
8 {
9 global $USER;
10 if (!$USER || !is_object($USER))
11 {
12 return false;
13 }
14
15 return true;
16 }
17}