ILIAS  release_8 Revision v8.24
Letter.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
22
24
25class Letter extends Avatar implements C\Symbol\Avatar\Letter
26{
27 public function getAbbreviation(): string
28 {
29 return (substr($this->getUsername(), 0, 2));
30 }
31
32 public function getBackgroundColorVariant(): int
33 {
34 return ((crc32($this->getAbbreviation()) % 26) + 1);
35 }
36}
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Avatar.php:21