ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
class.ilPCGridCellGUI.php
Go to the documentation of this file.
1
<?php
2
24
class
ilPCGridCellGUI
extends
ilPageContentGUI
25
{
26
public
function
__construct
(
27
ilPageObject
$a_pg_obj,
28
?
ilPageContent
$a_content_obj,
29
string
$a_hier_id,
30
string
$a_pc_id =
""
31
) {
32
parent::__construct
($a_pg_obj, $a_content_obj, $a_hier_id, $a_pc_id);
33
}
34
35
public
function
executeCommand
(): void
36
{
37
// get next class that processes or forwards current command
38
$next_class = $this->
ctrl
->getNextClass($this);
39
40
// get current command
41
$cmd = $this->
ctrl
->getCmd();
42
43
switch
($next_class) {
44
default
:
45
$this->$cmd();
46
break
;
47
}
48
}
49
50
public
function
deleteCell
(): void
51
{
52
$this->content_obj->deleteCell();
53
$this->
updateAndReturn
();
54
}
55
56
public
function
moveCellRight
(): void
57
{
58
$this->content_obj->moveCellRight();
59
$this->
updateAndReturn
();
60
}
61
62
public
function
moveCellLeft
(): void
63
{
64
$this->content_obj->moveCellLeft();
65
$this->
updateAndReturn
();
66
}
67
}
ilPCGridCellGUI\moveCellRight
moveCellRight()
Definition:
class.ilPCGridCellGUI.php:56
ilPCGridCellGUI\executeCommand
executeCommand()
Definition:
class.ilPCGridCellGUI.php:35
ilPCGridCellGUI\moveCellLeft
moveCellLeft()
Definition:
class.ilPCGridCellGUI.php:62
ilPageContent
Content object of ilPageObject (see ILIAS DTD).
Definition:
class.ilPageContent.php:28
ILIAS\Repository\ctrl
ctrl()
Definition:
trait.GlobalDICGUIServices.php:63
ilPCGridCellGUI\deleteCell
deleteCell()
Definition:
class.ilPCGridCellGUI.php:50
ilPageContentGUI
User Interface for Editing of Page Content Objects (Paragraphs, Tables, ...)
Definition:
class.ilPageContentGUI.php:29
ilPageObject
Class ilPageObject Handles PageObjects of ILIAS Learning Modules (see ILIAS DTD)
Definition:
class.ilPageObject.php:52
ilPCGridCellGUI
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPCGridCellGUI.php:24
ILIAS\GlobalScreen\Provider\__construct
__construct(Container $dic, ilPlugin $plugin)
Definition:
PluginProviderHelper.php:37
ilPCGridCellGUI\__construct
__construct(ilPageObject $a_pg_obj, ?ilPageContent $a_content_obj, string $a_hier_id, string $a_pc_id="")
Definition:
class.ilPCGridCellGUI.php:26
ilPageContentGUI\updateAndReturn
updateAndReturn()
Definition:
class.ilPageContentGUI.php:368
components
ILIAS
COPage
PC
Grid
class.ilPCGridCellGUI.php
Generated on Sun Aug 31 2025 23:02:40 for ILIAS by
1.8.13 (using
Doxyfile
)