Replace logout link by a dropdown menu

This commit is contained in:
Frederic Guillot
2016-01-21 20:58:12 -05:00
parent f3e5fdb137
commit fcdfdeabfa
7 changed files with 32 additions and 43 deletions

View File

@@ -50,22 +50,6 @@ class User extends \Kanboard\Core\Base
return $this->userSession->getId();
}
/**
* Get user profile
*
* @access public
* @return string
*/
public function getProfileLink()
{
return $this->helper->url->link(
$this->helper->e($this->getFullname()),
'user',
'show',
array('user_id' => $this->userSession->getId())
);
}
/**
* Check if the given user_id is the connected user
*