ILIAS
release_8 Revision v8.19
|
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...
Public Member Functions | |
setChildLimit (int $a_val) | |
getChildLimit () | |
setSearchTerm (string $a_val) | |
getSearchTerm () | |
setMainTemplate (ilGlobalTemplateInterface $a_main_tpl=null) | |
getRootNode () | |
Get root node. More... | |
getChildsOfNode ($a_parent_node_id) | |
Get children of node. More... | |
getNodeContent ($a_node) | |
Get content of a node. More... | |
getNodeId ($a_node) | |
Get id of a node. More... | |
getNodeHref ($a_node) | |
Get href for node. More... | |
nodeHasVisibleChilds ($a_node) | |
Node has children Please note that this standard method may not be optimal depending on what a derived class does in isNodeVisible. More... | |
sortChilds (array $a_childs, $a_parent_node_id) | |
Sort childs. More... | |
getNodeIcon ($a_node) | |
Get node icon path. More... | |
getNodeIconAlt ($a_node) | |
Get node icon alt attribute. More... | |
getNodeTarget ($a_node) | |
Get node target (frame) attribute. More... | |
getNodeOnClick ($a_node) | |
Get node onclick attribute. More... | |
isNodeVisible ($a_node) | |
Is node visible? More... | |
isNodeHighlighted ($a_node) | |
Is node highlighted? More... | |
isNodeClickable ($a_node) | |
Is node clickable? More... | |
getId () | |
Get id of explorer element. More... | |
setSkipRootNode (bool $a_val) | |
getSkipRootNode () | |
setAjax (bool $a_val) | |
getAjax () | |
setSecondaryHighlightedNodes (array $a_val) | |
Set secondary (background) highlighted nodes. More... | |
getSecondaryHighlightedNodes () | |
Get secondary (background) highlighted nodes. More... | |
setNodeOpen ($a_id) | |
Set node to be opened (additional custom opened node, not standard expand behaviour) More... | |
setSelectMode (string $a_postvar, bool $a_multi=false) | |
Set select mode (to deactivate, pass an empty string as postvar) More... | |
setNodeSelected ($a_id) | |
Set node to be opened (additional custom opened node, not standard expand behaviour) More... | |
setOfflineMode (bool $a_val) | |
getOfflineMode () | |
handleCommand () | |
Handle explorer internal command. More... | |
getContainerId () | |
openNode () | |
Open node. More... | |
closeNode () | |
Close node. More... | |
getNodeAsync () | |
Get node asynchronously. More... | |
beforeRendering () | |
Before rendering. More... | |
getOnLoadCode () | |
Get on load code. More... | |
getHTML () | |
renderNode ($a_node, ilTemplate $tpl) | |
Render node. More... | |
renderChilds ($a_node_id, ilTemplate $tpl) | |
Render childs. More... | |
getDomNodeIdForNodeId ($a_node_id) | |
Get DOM node id for node id. More... | |
getNodeIdForDomNodeId (string $a_dom_node_id) | |
Get node id for dom node id. More... | |
listItemStart (ilTemplate $tpl, $a_node) | |
List item start. More... | |
listItemEnd (ilTemplate $tpl) | |
listStart (ilTemplate $tpl) | |
listEnd (ilTemplate $tpl) | |
isNodeOnclickEnabled () | |
setNodeOnclickEnabled (bool $nodeOnclickEnabled) | |
isEnableDnd () | |
setEnableDnd (bool $enable_dnd) | |
Static Public Member Functions | |
static | getLocalExplorerJsPath () |
static | getLocalJsTreeJsPath () |
static | getLocalJsTreeCssPath () |
static | createHTMLExportDirs (string $a_target_dir) |
static | init (ilGlobalTemplateInterface $a_main_tpl=null) |
Protected Member Functions | |
isNodeSelectable ($a_node) | |
Is node selectable? More... | |
getNodeToggleOnClick ($a_node) | |
Get onclick attribute for node toggling. More... | |
getSelectOnClick ($a_node) | |
Get onclick attribute for selecting radio/checkbox. More... | |
isNodeOpen ($node_id) | |
Get all open nodes. More... | |
getJSTreePlugins () | |
isNodeRequested (string $a_node_id) | |
Protected Attributes | |
string | $node_parameter_name |
ilLogger | $log |
ilCtrl | $ctrl |
ilGlobalTemplateInterface | $tpl |
bool | $skip_root_node = false |
bool | $ajax = false |
array | $custom_open_nodes = array() |
array | $selected_nodes = array() |
string | $select_postvar = "" |
bool | $offline_mode = false |
array | $sec_highl_nodes = array() |
bool | $enable_dnd = false |
string | $search_term = "" |
array | $open_nodes = [] |
ilSessionIStorage | $store |
bool | $select_multi = false |
$parent_obj | |
int | $child_limit = 0 |
string | $parent_cmd = '' |
string | $requested_exp_cmd = "" |
string | $requested_exp_cont = "" |
string | $requested_searchterm = "" |
string | $requested_node_id = "" |
string | $id |
Static Protected Attributes | |
static string | $js_tree_path = "./node_modules/jstree/dist/jstree.js" |
static string | $js_tree_path_css = "./node_modules/jstree/dist/themes/default/style.min.css" |
static string | $js_expl_path = "./Services/UIComponent/Explorer2/js/Explorer2.js" |
Private Attributes | |
bool | $nodeOnclickEnabled |
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.
ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.
If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning The class is supposed to work on a hierarchie of nodes that are identified by IDs. Whether nodes are represented by associative arrays or objects is not defined by this abstract class.
Definition at line 26 of file class.ilExplorerBaseGUI.php.
ilExplorerBaseGUI::beforeRendering | ( | ) |
Before rendering.
Definition at line 502 of file class.ilExplorerBaseGUI.php.
Referenced by getHTML(), and getNodeAsync().
ilExplorerBaseGUI::closeNode | ( | ) |
Close node.
Definition at line 463 of file class.ilExplorerBaseGUI.php.
References exit, and getNodeIdForDomNodeId().
|
static |
Definition at line 137 of file class.ilExplorerBaseGUI.php.
References getChildsOfNode(), getNodeContent(), getNodeId(), getRootNode(), and ilFileUtils\makeDirParents().
ilExplorerBaseGUI::getAjax | ( | ) |
Definition at line 336 of file class.ilExplorerBaseGUI.php.
References $ajax.
Referenced by getOnLoadCode(), ilObjStudyProgrammeTreeExplorerGUI\listItemStart(), listItemStart(), and renderNode().
ilExplorerBaseGUI::getChildLimit | ( | ) |
Definition at line 102 of file class.ilExplorerBaseGUI.php.
References $child_limit.
Referenced by renderChilds().
|
abstract |
Get children of node.
string | $a_parent_node_id |
Referenced by createHTMLExportDirs(), getHTML(), nodeHasVisibleChilds(), and renderChilds().
ilExplorerBaseGUI::getContainerId | ( | ) |
Definition at line 442 of file class.ilExplorerBaseGUI.php.
References getId().
Referenced by ilObjStudyProgrammeTreeExplorerGUI\getHTML(), getHTML(), getNodeToggleOnClick(), getOnLoadCode(), and handleCommand().
ilExplorerBaseGUI::getDomNodeIdForNodeId | ( | $a_node_id | ) |
Get DOM node id for node id.
string | $a_node_id |
Definition at line 823 of file class.ilExplorerBaseGUI.php.
References getId().
Referenced by getNodeToggleOnClick(), getOnLoadCode(), getSelectOnClick(), isNodeRequested(), ilObjStudyProgrammeTreeExplorerGUI\listItemStart(), and listItemStart().
ilExplorerBaseGUI::getHTML | ( | ) |
Definition at line 611 of file class.ilExplorerBaseGUI.php.
References $ctrl, $tpl, ilGlobalTemplateInterface\addOnLoadCode(), beforeRendering(), getChildsOfNode(), getContainerId(), getId(), getNodeId(), getOnLoadCode(), getRootNode(), getSkipRootNode(), isNodeVisible(), listEnd(), listStart(), renderNode(), and sortChilds().
ilExplorerBaseGUI::getId | ( | ) |
Get id of explorer element.
Definition at line 316 of file class.ilExplorerBaseGUI.php.
References $id.
Referenced by getContainerId(), getDomNodeIdForNodeId(), getHTML(), getNodeIdForDomNodeId(), and getOnLoadCode().
|
protected |
Definition at line 585 of file class.ilExplorerBaseGUI.php.
References isEnableDnd().
Referenced by getOnLoadCode().
|
static |
Definition at line 122 of file class.ilExplorerBaseGUI.php.
Referenced by ilGroupUserActionProvider\getJsScripts(), and ILIAS\LearningModule\Export\LMHtmlExport\getSupplyingExportFiles().
|
static |
Definition at line 132 of file class.ilExplorerBaseGUI.php.
Referenced by ILIAS\LearningModule\Export\LMHtmlExport\getSupplyingExportFiles().
|
static |
Definition at line 127 of file class.ilExplorerBaseGUI.php.
Referenced by ilGroupUserActionProvider\getJsScripts(), and ILIAS\LearningModule\Export\LMHtmlExport\getSupplyingExportFiles().
ilExplorerBaseGUI::getNodeAsync | ( | ) |
Get node asynchronously.
Definition at line 477 of file class.ilExplorerBaseGUI.php.
References beforeRendering(), exit, getNodeId(), getNodeIdForDomNodeId(), getRootNode(), renderChilds(), renderNode(), setSearchTerm(), and ilUtil\stripSlashes().
|
abstract |
Get content of a node.
object | array | $a_node | node array or object |
Referenced by createHTMLExportDirs(), ilTreeExplorerGUI\createNode(), ilTreeExplorerGUI\getTreeComponent(), ilTreeExplorerGUI\matches(), and renderNode().
ilExplorerBaseGUI::getNodeHref | ( | $a_node | ) |
Get href for node.
object | array | $a_node |
Definition at line 189 of file class.ilExplorerBaseGUI.php.
Referenced by ilTreeExplorerGUI\build(), and renderNode().
ilExplorerBaseGUI::getNodeIcon | ( | $a_node | ) |
Get node icon path.
object | array | $a_node |
Definition at line 229 of file class.ilExplorerBaseGUI.php.
Referenced by ilTreeExplorerGUI\createNode(), and renderNode().
ilExplorerBaseGUI::getNodeIconAlt | ( | $a_node | ) |
Get node icon alt attribute.
object | array | $a_node |
Definition at line 239 of file class.ilExplorerBaseGUI.php.
Referenced by renderNode().
|
abstract |
Get id of a node.
object | array | $a_node | node array or object |
Referenced by createHTMLExportDirs(), getHTML(), getNodeAsync(), getNodeToggleOnClick(), getOnLoadCode(), getSelectOnClick(), isNodeOpen(), isNodeRequested(), listItemStart(), nodeHasVisibleChilds(), and renderNode().
ilExplorerBaseGUI::getNodeIdForDomNodeId | ( | string | $a_dom_node_id | ) |
Get node id for dom node id.
Definition at line 831 of file class.ilExplorerBaseGUI.php.
Referenced by closeNode(), getNodeAsync(), ilObjStudyProgrammeTreeExplorerGUI\openCertainNode(), and openNode().
ilExplorerBaseGUI::getNodeOnClick | ( | $a_node | ) |
Get node onclick attribute.
object | array | $a_node | node |
Definition at line 259 of file class.ilExplorerBaseGUI.php.
References getSelectOnClick().
Referenced by renderNode().
ilExplorerBaseGUI::getNodeTarget | ( | $a_node | ) |
Get node target (frame) attribute.
object | array | $a_node | node |
Definition at line 249 of file class.ilExplorerBaseGUI.php.
Referenced by renderNode().
|
finalprotected |
Get onclick attribute for node toggling.
object | array | $a_node |
Definition at line 372 of file class.ilExplorerBaseGUI.php.
References getContainerId(), getDomNodeIdForNodeId(), and getNodeId().
ilExplorerBaseGUI::getOfflineMode | ( | ) |
Definition at line 416 of file class.ilExplorerBaseGUI.php.
References $offline_mode.
Referenced by ilLMExplorerGUI\__construct(), ilLMTOCExplorerGUI\__construct(), ilLMExplorerGUI\beforeRendering(), ilLMTOCExplorerGUI\getNodeHref(), ilLMTOCExplorerGUI\getNodeIcon(), getOnLoadCode(), and ilLMTOCExplorerGUI\isNodeClickable().
ilExplorerBaseGUI::getOnLoadCode | ( | ) |
Get on load code.
Definition at line 521 of file class.ilExplorerBaseGUI.php.
References $config, $ctrl, $url, getAjax(), getContainerId(), getDomNodeIdForNodeId(), getId(), getJSTreePlugins(), getNodeId(), getOfflineMode(), and getRootNode().
Referenced by getHTML().
|
abstract |
Get root node.
Please note that the class does not make any requirements how nodes are represented (array or object)
Referenced by createHTMLExportDirs(), getHTML(), getNodeAsync(), getOnLoadCode(), isNodeOpen(), isNodeRequested(), and renderNode().
ilExplorerBaseGUI::getSearchTerm | ( | ) |
Definition at line 112 of file class.ilExplorerBaseGUI.php.
References $search_term.
Referenced by ilTreeExplorerGUI\getChildsOfNode(), ilTreeExplorerGUI\matches(), and renderChilds().
ilExplorerBaseGUI::getSecondaryHighlightedNodes | ( | ) |
Get secondary (background) highlighted nodes.
Definition at line 352 of file class.ilExplorerBaseGUI.php.
References $sec_highl_nodes.
|
finalprotected |
Get onclick attribute for selecting radio/checkbox.
object | array | $a_node |
Definition at line 382 of file class.ilExplorerBaseGUI.php.
References getDomNodeIdForNodeId(), and getNodeId().
Referenced by getNodeOnClick().
ilExplorerBaseGUI::getSkipRootNode | ( | ) |
Definition at line 326 of file class.ilExplorerBaseGUI.php.
References $skip_root_node.
Referenced by getHTML(), ilTaxonomyClassificationExplorerGUI\getTreeComponent(), and renderNode().
ilExplorerBaseGUI::handleCommand | ( | ) |
Handle explorer internal command.
Definition at line 428 of file class.ilExplorerBaseGUI.php.
References $requested_exp_cmd, and getContainerId().
Referenced by ilObjTaxonomyGUI\showTree().
|
static |
Definition at line 596 of file class.ilExplorerBaseGUI.php.
References $DIC, ilGlobalTemplateInterface\addCss(), ilGlobalTemplateInterface\addJavaScript(), ilYuiUtil\initConnection(), and iljQueryUtil\initjQuery().
Referenced by ilInternalLinkGUI\getInitHTML(), ILIAS\Repository\Provider\RepositoryMainBarProvider\getStaticSubItems(), and ilObjStudyProgrammeGUI\initTreeJS().
ilExplorerBaseGUI::isEnableDnd | ( | ) |
Definition at line 887 of file class.ilExplorerBaseGUI.php.
References $enable_dnd.
Referenced by getJSTreePlugins().
ilExplorerBaseGUI::isNodeClickable | ( | $a_node | ) |
Is node clickable?
object | array | $a_node | node |
Definition at line 292 of file class.ilExplorerBaseGUI.php.
Referenced by renderNode().
ilExplorerBaseGUI::isNodeHighlighted | ( | $a_node | ) |
Is node highlighted?
object | array | $a_node | node |
Definition at line 282 of file class.ilExplorerBaseGUI.php.
Referenced by renderNode().
ilExplorerBaseGUI::isNodeOnclickEnabled | ( | ) |
Definition at line 877 of file class.ilExplorerBaseGUI.php.
References $nodeOnclickEnabled.
Referenced by renderNode().
|
protected |
Get all open nodes.
string | $node_id |
Definition at line 510 of file class.ilExplorerBaseGUI.php.
References getNodeId(), and getRootNode().
Referenced by ilTreeExplorerGUI\build(), and listItemStart().
|
protected |
Definition at line 813 of file class.ilExplorerBaseGUI.php.
References getDomNodeIdForNodeId(), getNodeId(), and getRootNode().
Referenced by ilTreeExplorerGUI\getChildsOfNode(), and renderChilds().
|
protected |
Is node selectable?
object | array | $a_node | node |
Definition at line 302 of file class.ilExplorerBaseGUI.php.
Referenced by renderNode().
ilExplorerBaseGUI::isNodeVisible | ( | $a_node | ) |
Is node visible?
object | array | $a_node | node |
Definition at line 272 of file class.ilExplorerBaseGUI.php.
Referenced by getHTML(), nodeHasVisibleChilds(), and renderChilds().
ilExplorerBaseGUI::listEnd | ( | ilTemplate | $tpl | ) |
Definition at line 871 of file class.ilExplorerBaseGUI.php.
References ilTemplate\touchBlock().
Referenced by getHTML(), and renderChilds().
ilExplorerBaseGUI::listItemEnd | ( | ilTemplate | $tpl | ) |
Definition at line 859 of file class.ilExplorerBaseGUI.php.
References ilTemplate\touchBlock().
Referenced by renderNode().
ilExplorerBaseGUI::listItemStart | ( | ilTemplate | $tpl, |
$a_node | |||
) |
List item start.
object | array | $a_node |
Definition at line 841 of file class.ilExplorerBaseGUI.php.
References getAjax(), getDomNodeIdForNodeId(), getNodeId(), isNodeOpen(), nodeHasVisibleChilds(), ilTemplate\parseCurrentBlock(), ilTemplate\setCurrentBlock(), HTML_Template_IT\setVariable(), and ilTemplate\touchBlock().
Referenced by renderNode().
ilExplorerBaseGUI::listStart | ( | ilTemplate | $tpl | ) |
Definition at line 865 of file class.ilExplorerBaseGUI.php.
References ilTemplate\touchBlock().
Referenced by getHTML(), and renderChilds().
ilExplorerBaseGUI::nodeHasVisibleChilds | ( | $a_node | ) |
Node has children Please note that this standard method may not be optimal depending on what a derived class does in isNodeVisible.
object | array | $a_node |
Definition at line 201 of file class.ilExplorerBaseGUI.php.
References getChildsOfNode(), getNodeId(), and isNodeVisible().
Referenced by ilObjStudyProgrammeTreeExplorerGUI\listItemStart(), and listItemStart().
ilExplorerBaseGUI::openNode | ( | ) |
Open node.
Definition at line 450 of file class.ilExplorerBaseGUI.php.
References $id, exit, and getNodeIdForDomNodeId().
|
final |
Render childs.
string | $a_node_id |
Definition at line 757 of file class.ilExplorerBaseGUI.php.
References getChildLimit(), getChildsOfNode(), getSearchTerm(), isNodeRequested(), isNodeVisible(), listEnd(), listStart(), ilTemplate\parseCurrentBlock(), renderNode(), ilTemplate\setCurrentBlock(), HTML_Template_IT\setVariable(), sortChilds(), and ilTemplate\touchBlock().
Referenced by getNodeAsync(), and renderNode().
ilExplorerBaseGUI::renderNode | ( | $a_node, | |
ilTemplate | $tpl | ||
) |
Render node.
object | array | $a_node |
Definition at line 678 of file class.ilExplorerBaseGUI.php.
References getAjax(), getNodeContent(), getNodeHref(), getNodeIcon(), getNodeIconAlt(), getNodeId(), getNodeOnClick(), getNodeTarget(), getRootNode(), getSkipRootNode(), ilUtil\img(), isNodeClickable(), isNodeHighlighted(), isNodeOnclickEnabled(), isNodeSelectable(), listItemEnd(), listItemStart(), ilTemplate\parseCurrentBlock(), renderChilds(), ilTemplate\setCurrentBlock(), HTML_Template_IT\setVariable(), and ilTemplate\touchBlock().
Referenced by getHTML(), getNodeAsync(), and renderChilds().
ilExplorerBaseGUI::setAjax | ( | bool | $a_val | ) |
Definition at line 331 of file class.ilExplorerBaseGUI.php.
Referenced by ilMaterialExplorer\__construct(), ilMediaPoolExplorerGUI\__construct(), ilPoolSelectorGUI\__construct(), ilConditionSelector\__construct(), ilLMExplorerGUI\__construct(), ilMailExplorer\__construct(), ilForumExplorerGUI\__construct(), ilVirtualSkillTreeExplorerGUI\__construct(), ilSkillTreeExplorerGUI\__construct(), ilAdministrationExplorerGUI\__construct(), ilSkillTemplateTreeExplorerGUI\__construct(), ilOrgUnitExplorerGUI\__construct(), ilWorkspaceExplorerGUI\__construct(), ilObjStudyProgrammeTreeExplorerGUI\__construct(), and ilLMExplorerGUI\beforeRendering().
ilExplorerBaseGUI::setChildLimit | ( | int | $a_val | ) |
Definition at line 97 of file class.ilExplorerBaseGUI.php.
ilExplorerBaseGUI::setEnableDnd | ( | bool | $enable_dnd | ) |
Definition at line 893 of file class.ilExplorerBaseGUI.php.
References $enable_dnd.
Referenced by ilObjStudyProgrammeTreeExplorerGUI\__construct().
ilExplorerBaseGUI::setMainTemplate | ( | ilGlobalTemplateInterface | $a_main_tpl = null | ) |
Definition at line 117 of file class.ilExplorerBaseGUI.php.
ilExplorerBaseGUI::setNodeOnclickEnabled | ( | bool | $nodeOnclickEnabled | ) |
Definition at line 882 of file class.ilExplorerBaseGUI.php.
References $nodeOnclickEnabled.
Referenced by ilLSTOCGUI\__construct().
ilExplorerBaseGUI::setNodeOpen | ( | $a_id | ) |
Set node to be opened (additional custom opened node, not standard expand behaviour)
string | $a_id |
Definition at line 361 of file class.ilExplorerBaseGUI.php.
Referenced by ilLMTableOfContentsExplorerGUI\__construct(), ilMediaPoolExplorerGUI\__construct(), ilForumExplorerGUI\__construct(), ilPublicSectionExplorerGUI\beforeRendering(), and ilTreeExplorerGUI\setPathOpen().
ilExplorerBaseGUI::setNodeSelected | ( | $a_id | ) |
Set node to be opened (additional custom opened node, not standard expand behaviour)
string | $a_id |
Definition at line 404 of file class.ilExplorerBaseGUI.php.
Referenced by ilPublicSectionExplorerGUI\beforeRendering(), and ilSkillSelectorGUI\setSkillSelected().
ilExplorerBaseGUI::setOfflineMode | ( | bool | $a_val | ) |
Definition at line 411 of file class.ilExplorerBaseGUI.php.
ilExplorerBaseGUI::setSearchTerm | ( | string | $a_val | ) |
Definition at line 107 of file class.ilExplorerBaseGUI.php.
Referenced by getNodeAsync().
ilExplorerBaseGUI::setSecondaryHighlightedNodes | ( | array | $a_val | ) |
Set secondary (background) highlighted nodes.
Definition at line 344 of file class.ilExplorerBaseGUI.php.
Referenced by ilLMTOCExplorerGUI\__construct().
ilExplorerBaseGUI::setSelectMode | ( | string | $a_postvar, |
bool | $a_multi = false |
||
) |
Set select mode (to deactivate, pass an empty string as postvar)
string | $a_postvar | variable used for post, a "[]" is added automatically |
bool | $a_multi | multi select (checkboxes) or not (radio) |
Definition at line 394 of file class.ilExplorerBaseGUI.php.
Referenced by ilForumMoveTopicsExplorer\__construct(), ilTestQuestionPoolSelectorExplorer\__construct(), and ilRepositoryTrashGUI\initFormTrashTargetLocation().
ilExplorerBaseGUI::setSkipRootNode | ( | bool | $a_val | ) |
Definition at line 321 of file class.ilExplorerBaseGUI.php.
Referenced by ilMaterialExplorer\__construct(), ilMediaPoolExplorerGUI\__construct(), ilSkillSelectorGUI\__construct(), ilLMExplorerGUI\__construct(), ilMailExplorer\__construct(), ilForumExplorerGUI\__construct(), ilVirtualSkillTreeExplorerGUI\__construct(), ilSkillTreeExplorerGUI\__construct(), ilAdministrationExplorerGUI\__construct(), ilSkillTemplateTreeExplorerGUI\__construct(), ilWorkspaceExplorerGUI\__construct(), ilLSTOCGUI\__construct(), and ilPersonalSkillExplorerGUI\__construct().
ilExplorerBaseGUI::sortChilds | ( | array | $a_childs, |
$a_parent_node_id | |||
) |
Sort childs.
array | $a_childs | array of child nodes |
string | $a_parent_node_id | parent node |
Definition at line 219 of file class.ilExplorerBaseGUI.php.
Referenced by getHTML(), and renderChilds().
|
protected |
Definition at line 38 of file class.ilExplorerBaseGUI.php.
Referenced by getAjax().
|
protected |
Definition at line 54 of file class.ilExplorerBaseGUI.php.
Referenced by getChildLimit().
|
protected |
Definition at line 30 of file class.ilExplorerBaseGUI.php.
Referenced by getHTML(), ilPCFileItemFileSelectorGUI\getNodeHref(), ilMaterialExplorer\getNodeHref(), ilPoolSelectorGUI\getNodeHref(), ilSkillSelectorGUI\getNodeHref(), ilTaxonomyExplorerGUI\getNodeHref(), ilMediaPoolExplorerGUI\getNodeHref(), ilLMEditorExplorerGUI\getNodeHref(), ilWorkspaceExplorerGUI\getNodeHref(), ilAdministrationExplorerGUI\getNodeHref(), ilSkillTemplateTreeExplorerGUI\getNodeHref(), ilSkillTreeExplorerGUI\getNodeHref(), ilRepositoryExplorerGUI\getNodeHref(), ilRepositorySelectorExplorerGUI\getNodeHref(), ilVirtualSkillTreeExplorerGUI\getNodeHref(), ilPersonalSkillExplorerGUI\getNodeHref(), and getOnLoadCode().
|
protected |
Definition at line 39 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 44 of file class.ilExplorerBaseGUI.php.
Referenced by isEnableDnd(), and setEnableDnd().
|
protected |
Definition at line 62 of file class.ilExplorerBaseGUI.php.
Referenced by ilTreeExplorerGUI\build(), getId(), ilVirtualSkillTreeExplorerGUI\getNodeIdForDomNodeId(), ilObjStudyProgrammeTreeExplorerGUI\openCertainNode(), openNode(), and ilTreeExplorerGUI\setPathOpen().
|
staticprotected |
Definition at line 36 of file class.ilExplorerBaseGUI.php.
|
staticprotected |
Definition at line 33 of file class.ilExplorerBaseGUI.php.
|
staticprotected |
Definition at line 34 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 29 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 28 of file class.ilExplorerBaseGUI.php.
Referenced by ilTreeExplorerGUI\toggleExplorerNodeState().
|
private |
Definition at line 55 of file class.ilExplorerBaseGUI.php.
Referenced by isNodeOnclickEnabled(), and setNodeOnclickEnabled().
|
protected |
Definition at line 42 of file class.ilExplorerBaseGUI.php.
Referenced by getOfflineMode().
|
protected |
Definition at line 46 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 56 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 53 of file class.ilExplorerBaseGUI.php.
Referenced by ilTaxonomyClassificationExplorerGUI\__construct(), ilObjStudyProgrammeTreeExplorerGUI\__construct(), ilLMExplorerGUI\beforeRendering(), ilObjStudyProgrammeTreeExplorerGUI\getChildsOfNode(), and ilWorkspaceExplorerGUI\getNodeHref().
|
protected |
Definition at line 58 of file class.ilExplorerBaseGUI.php.
Referenced by handleCommand().
|
protected |
Definition at line 59 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 61 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 60 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 45 of file class.ilExplorerBaseGUI.php.
Referenced by getSearchTerm().
|
protected |
Definition at line 43 of file class.ilExplorerBaseGUI.php.
Referenced by getSecondaryHighlightedNodes().
|
protected |
Definition at line 48 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 41 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 40 of file class.ilExplorerBaseGUI.php.
Referenced by ilOrgUnitExplorerGUI\isNodeSelectable().
|
protected |
Definition at line 37 of file class.ilExplorerBaseGUI.php.
Referenced by getSkipRootNode().
|
protected |
Definition at line 47 of file class.ilExplorerBaseGUI.php.
|
protected |
Definition at line 31 of file class.ilExplorerBaseGUI.php.
Referenced by getHTML(), ilObjStudyProgrammeTreeExplorerGUI\getNodeButtonActionLink(), and ilObjStudyProgrammeTreeExplorerGUI\getNodeContent().