BlockGUI class for dummy block. More...
Inheritance diagram for ilDummyBlockGUI:
Collaboration diagram for ilDummyBlockGUI:Public Member Functions | |
| ilDummyBlockGUI () | |
| Constructor. | |
| setBlock ($a_block) | |
| Do most of the initialisation. | |
| & | executeCommand () |
| execute command | |
| fillDataSection () | |
| Fill data section. | |
| getHTML () | |
| Get block HTML code. | |
Static Public Member Functions | |
| static | getBlockType () |
| Get block type. | |
| static | setBlockType ($a_type) |
| Set block type. | |
| static | isRepositoryObject () |
| Is this a repository object. | |
| static | getScreenMode () |
| Get Screen Mode for current command. | |
Static Public Attributes | |
| static | $block_type = "" |
BlockGUI class for dummy block.
Only used for moving, if block is not visible
Definition at line 35 of file class.ilDummyBlockGUI.php.
| & ilDummyBlockGUI::executeCommand | ( | ) |
| ilDummyBlockGUI::fillDataSection | ( | ) |
Fill data section.
Reimplemented from ilBlockGUI.
Definition at line 120 of file class.ilDummyBlockGUI.php.
References $lng, and ilBlockGUI::setDataSection().
{
global $lng;
$this->setDataSection($lng->txt("invisible_block_mess"));
}
Here is the call graph for this function:| static ilDummyBlockGUI::getBlockType | ( | ) | [static] |
Get block type.
Reimplemented from ilBlockGUI.
Definition at line 57 of file class.ilDummyBlockGUI.php.
{
return self::$block_type;
}
| ilDummyBlockGUI::getHTML | ( | ) |
Get block HTML code.
Reimplemented from ilBlockGUI.
Definition at line 130 of file class.ilDummyBlockGUI.php.
References $ilCtrl, $ilSetting, and $lng.
{
global $ilCtrl, $lng, $ilUser, $ilAccess, $ilSetting;
return parent::getHTML();
}
| static ilDummyBlockGUI::getScreenMode | ( | ) | [static] |
Get Screen Mode for current command.
Reimplemented from ilBlockGUI.
Definition at line 86 of file class.ilDummyBlockGUI.php.
References $ilCtrl.
{
global $ilCtrl;
return IL_SCREEN_SIDE;
}
| ilDummyBlockGUI::ilDummyBlockGUI | ( | ) |
Constructor.
Definition at line 42 of file class.ilDummyBlockGUI.php.
References $ilCtrl, $lng, and ilBlockGUI::setLimit().
Here is the call graph for this function:| static ilDummyBlockGUI::isRepositoryObject | ( | ) | [static] |
Is this a repository object.
Reimplemented from ilBlockGUI.
Definition at line 77 of file class.ilDummyBlockGUI.php.
{
return false;
}
| ilDummyBlockGUI::setBlock | ( | $ | a_block | ) |
| static ilDummyBlockGUI::setBlockType | ( | $ | a_type | ) | [static] |
Set block type.
Definition at line 67 of file class.ilDummyBlockGUI.php.
{
self::$block_type = $a_type;
}
ilDummyBlockGUI::$block_type = "" [static] |
Definition at line 37 of file class.ilDummyBlockGUI.php.
1.7.1