ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ ilDoc Overview
isItem.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\GlobalScreen\Scope\MetaBar\Factory
;
22
23
use
ILIAS\GlobalScreen\isGlobalScreenItem
;
24
use
ILIAS\GlobalScreen\Scope\MetaBar\Collector\Renderer\MetaBarItemRenderer
;
25
30
interface
isItem
extends
isGlobalScreenItem
31
{
35
public
function
getRenderer
() :
MetaBarItemRenderer
;
36
43
public
function
withVisibilityCallable
(callable $is_visible) :
isItem
;
44
48
public
function
isVisible
() : bool;
49
57
public
function
withAvailableCallable
(callable $is_available) :
isItem
;
58
62
public
function
isAvailable
() : bool;
63
69
public
function
getPosition
() : int;
70
75
public
function
withPosition
(
int
$position) :
isItem
;
76
}
ILIAS\GlobalScreen\isGlobalScreenItem
Interface isGlobalScreenItem.
Definition:
isGlobalScreenItem.php:30
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\isAvailable
isAvailable()
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\getPosition
getPosition()
Return the default position for installation, this will be overridden by the configuration later...
isGlobalScreenItem
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\withAvailableCallable
withAvailableCallable(callable $is_available)
Pass a callable which can decide whether your element is available in general, e.g.
ILIAS\GlobalScreen\Scope\MetaBar\Factory
Definition:
AbstractBaseItem.php:20
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\getRenderer
getRenderer()
MetaBarItemRenderer
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\withVisibilityCallable
withVisibilityCallable(callable $is_visible)
Pass a callable which can decide whether your element is visible for the current user.
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\isVisible
isVisible()
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem
Class isItem.
Definition:
isItem.php:30
ILIAS\GlobalScreen\Scope\MetaBar\Factory\isItem\withPosition
withPosition(int $position)
ILIAS\GlobalScreen\Scope\MetaBar\Collector\Renderer\MetaBarItemRenderer
Interface MetaBarItemRenderer.
Definition:
MetaBarItemRenderer.php:29
src
GlobalScreen
Scope
MetaBar
Factory
isItem.php
Generated on Wed Sep 3 2025 21:01:44 for ILIAS by
1.8.13 (using
Doxyfile
)