ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
Month.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\UI\Implementation\Component\Button
;
22
23
use
ILIAS\UI\Component
as
C
;
24
use
ILIAS\UI\Implementation\Component\ComponentHelper
;
25
use
ILIAS\UI\Implementation\Component\JavaScriptBindable
;
26
27
class
Month
implements
C\Button\Month
28
{
29
use
ComponentHelper
;
30
use
JavaScriptBindable
;
31
32
protected
string
$default
;
33
37
public
function
__construct
(
string
$default)
38
{
39
$this->
default
=
$default
;
40
}
41
45
public
function
getDefault
(): string
46
{
47
return
$this->default
;
48
}
49
}
ILIAS\UI\Component
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\UI\Implementation\Component\JavaScriptBindable
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
Definition:
JavaScriptBindable.php:32
ILIAS\UI\Implementation\Component\Button\Month\__construct
__construct(string $default)
Definition:
Month.php:37
ILIAS\UI\Implementation\Component\Button
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
Bulky.php:21
ILIAS\UI\Implementation\Component\Button\Month\$default
string $default
Definition:
Month.php:32
ComponentHelper
ILIAS\UI\Implementation\Component\Button\Month\getDefault
getDefault()
Definition:
Month.php:45
ILIAS\UI\Implementation\Component\Button\Month
Definition:
Month.php:27
ComponentHelper
src
UI
Implementation
Component
Button
Month.php
Generated on Sun Aug 31 2025 22:02:47 for ILIAS by
1.8.13 (using
Doxyfile
)