| Current Path : /var/www/homesaver/www/bitrix/modules/sprint.migration/lib/traits/ |
| Current File : /var/www/homesaver/www/bitrix/modules/sprint.migration/lib/traits/currentusertrait.php |
<?php
namespace Sprint\Migration\Traits;
trait CurrentUserTrait
{
public function getCurrentUserLogin(): string
{
if (isset($GLOBALS['USER'])) {
return $GLOBALS['USER']->GetLogin();
}
return '';
}
public function getCurrentUserId(): string
{
if (isset($GLOBALS['USER'])) {
return $GLOBALS['USER']->GetId();
}
return '';
}
}