Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sprint.migration/lib/traits/
Upload File :
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 '';
    }
}