I have to ask how to get name of logged user into Nette component (SomethingControl.php). Apparently I can't just do this:
$identity = $this->getUser()->getIdentity();
if ($identity) $this->template->username = $identity->getData()['username'];
So I've tried this:
$this->template->username = $this->user
but that doesn't work either.