From c231b65cfc54aad8b143a76e19c6aea428f42a5c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 4 Jul 2015 20:12:17 -0400 Subject: Display user initials when tasks are in collapsed mode --- app/Helper/User.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'app/Helper') diff --git a/app/Helper/User.php b/app/Helper/User.php index 1cad6042..c1fff8c6 100644 --- a/app/Helper/User.php +++ b/app/Helper/User.php @@ -10,6 +10,24 @@ namespace Helper; */ class User extends \Core\Base { + /** + * Get initials from a user + * + * @access public + * @param string $name + * @return string + */ + public function getInitials($name) + { + $initials = ''; + + foreach (explode(' ', $name) as $string) { + $initials .= mb_substr($string, 0, 1); + } + + return mb_strtoupper($initials); + } + /** * Get user id * -- cgit v1.2.3