ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Avatar.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 2017 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
3
4
namespace
ILIAS\UI\Implementation\Component\Symbol\Avatar
;
5
6
use
ILIAS\UI\Component
as
C
;
7
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
8
use
ILIAS\UI\Implementation\Component\JavaScriptBindable
;
9
10
abstract
class
Avatar
implements
C\Symbol\Avatar\Avatar
11
{
12
use
ComponentHelper
;
13
use
JavaScriptBindable
;
17
private
$username
;
18
19
public
function
__construct
(
string
$username
)
20
{
21
$this->username =
$username
;
22
}
23
27
public
function
getUsername
() : string
28
{
29
return
$this->username
;
30
}
31
}
ILIAS\UI\Implementation\Component\Symbol\Avatar\Avatar\getUsername
getUsername()
Definition:
Avatar.php:27
ILIAS\UI\Implementation\Component\Symbol\Avatar\Avatar\__construct
__construct(string $username)
Definition:
Avatar.php:19
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:12
ILIAS\UI\Implementation\Component\ComponentHelper
trait ComponentHelper
Provides common functionality for component implementations.
Definition:
ComponentHelper.php:13
ILIAS\UI\Implementation\Component\Symbol\Avatar\Avatar
Definition:
Avatar.php:10
ILIAS\UI\Implementation\Component\Symbol\Avatar\Avatar\$username
$username
Definition:
Avatar.php:17
ILIAS\UI\Implementation\Component\Symbol\Avatar
Definition:
Avatar.php:4
src
UI
Implementation
Component
Symbol
Avatar
Avatar.php
Generated on Mon Sep 1 2025 20:01:43 for ILIAS by
1.8.13 (using
Doxyfile
)