ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
Factory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\UI\Implementation\Component\Counter
;
22
23
use
ILIAS\UI\Component
as
C
;
24
25
class
Factory
implements
C\Counter\Factory
26
{
27
public
function
status
(
int
$number):
Counter
28
{
29
return
new
Counter
(
C
\
Counter
\
Counter::STATUS
, $number);
30
}
31
32
public
function
novelty
(
int
$number):
Counter
33
{
34
return
new
Counter
(
C
\
Counter
\
Counter::NOVELTY
, $number);
35
}
36
}
ILIAS\UI\Implementation\Component\Counter\Factory\novelty
novelty(int $number)
Definition:
Factory.php:32
ILIAS\UI\Component
ILIAS\UI\Implementation\Component\Counter\Factory\status
status(int $number)
Definition:
Factory.php:27
ILIAS\UI\Component\Counter\Counter\NOVELTY
const NOVELTY
Definition:
Counter.php:31
ILIAS\UI\Implementation\Component\Counter
Definition:
Counter.php:21
ILIAS\UI\Implementation\Component\Counter\Counter
Definition:
Counter.php:26
ILIAS\UI\Component\Counter\Counter\STATUS
const STATUS
Definition:
Counter.php:32
ILIAS\UI\Implementation\Component\Counter\Factory
Definition:
Factory.php:25
components
ILIAS
UI
src
Implementation
Component
Counter
Factory.php
Generated on Sun Aug 31 2025 23:01:57 for ILIAS by
1.8.13 (using
Doxyfile
)