ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
AbstractNotificationProvider.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\Notification\Provider
;
22
23
use
ILIAS\DI\Container
;
24
use
ILIAS\GlobalScreen\Identification\IdentificationProviderInterface
;
25
use
ILIAS\GlobalScreen\Provider\AbstractProvider
;
26
use
ILIAS\GlobalScreen\Scope\Notification\Factory\NotificationFactory
;
27
32
abstract
class
AbstractNotificationProvider
extends
AbstractProvider
implements
NotificationProvider
33
{
34
protected
Container
$dic
;
35
protected
IdentificationProviderInterface
$if
;
36
protected
NotificationFactory
$notification_factory
;
37
41
public
function
__construct
(
Container
$dic
)
42
{
43
parent::__construct
(
$dic
);
44
$this->notification_factory = $this->
globalScreen
()->notifications()->factory();
45
$this->
if
= $this->
globalScreen
()->identification()->core($this);
46
}
47
51
public
function
getAdministrativeNotifications
(): array
52
{
53
return
[];
54
}
55
}
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:36
ILIAS\GlobalScreen\Provider\AbstractProvider
Definition:
AbstractProvider.php:30
ILIAS\GlobalScreen\Provider\AbstractProvider\globalScreen
globalScreen()
Definition:
AbstractProvider.php:38
ILIAS\GlobalScreen\Scope\Notification\Factory\NotificationFactory
Class NotificationFactory.
Definition:
NotificationFactory.php:30
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider
Interface AbstractNotificationProvider.
Definition:
AbstractNotificationProvider.php:33
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider\$notification_factory
NotificationFactory $notification_factory
Definition:
AbstractNotificationProvider.php:36
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider\getAdministrativeNotifications
getAdministrativeNotifications()
@inheritDoc
Definition:
AbstractNotificationProvider.php:51
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider\$if
IdentificationProviderInterface $if
Definition:
AbstractNotificationProvider.php:35
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider\$dic
Container $dic
Definition:
AbstractNotificationProvider.php:34
ILIAS\GlobalScreen\Scope\Notification\Provider\AbstractNotificationProvider\__construct
__construct(Container $dic)
@inheritDoc
Definition:
AbstractNotificationProvider.php:41
ILIAS\GlobalScreen\Identification\IdentificationProviderInterface
Class IdentificationProviderInterface.
Definition:
IdentificationProviderInterface.php:28
ILIAS\GlobalScreen\Scope\Notification\Provider\NotificationProvider
Interface NotificationProvider.
Definition:
NotificationProvider.php:32
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc
Definition:
PluginProviderHelper.php:38
ILIAS\GlobalScreen\Scope\Notification\Provider
Definition:
AbstractNotificationPluginProvider.php:21
components
ILIAS
GlobalScreen
src
Scope
Notification
Provider
AbstractNotificationProvider.php
Generated on Sat Oct 18 2025 23:03:08 for ILIAS by
1.9.4 (using
Doxyfile
)