48 $this->lng = $DIC->language();
49 $this->ctrl = $DIC->ctrl();
50 $this->tpl = $DIC[
"tpl"];
53 $this->root_id = $this->tree->readRootId();
54 $this->user_id = $a_user_id;
55 $this->allowed_types = array(
'wfld',
'wsrt');
56 $this->enablesmallmode =
false;
66 $this->enablesmallmode = $a_enablesmallmode;
76 return $this->enablesmallmode;
88 public function setOutput($a_parent, $a_depth = 1, $a_obj_id = 0, $a_highlighted_subtree =
false)
93 if ($objects = $this->tree->getChilds($a_parent,
"type DESC,title")) {
94 $tab = ++$a_depth - 2;
96 foreach ($objects as $key => $object) {
97 if (!in_array($object[
"type"], $this->allowed_types)) {
102 if ($object[
"child"] != $this->root_id) {
104 $parent_index = $this->
getIndex($object);
107 $this->format_options[
"$counter"][
"parent"] = $object[
"parent"];
108 $this->format_options[
"$counter"][
"child"] = $object[
"child"];
109 $this->format_options[
"$counter"][
"title"] = $object[
"title"];
110 $this->format_options[
"$counter"][
"description"] = $object[
"description"];
111 $this->format_options[
"$counter"][
"type"] = $object[
"type"];
112 $this->format_options[
"$counter"][
"depth"] = $tab;
113 $this->format_options[
"$counter"][
"container"] =
false;
114 $this->format_options[
"$counter"][
"visible"] =
true;
117 for (
$i = 0;
$i < $tab; ++
$i) {
118 $this->format_options[
"$counter"][
"tab"][] =
'blank';
121 if ($object[
"child"] != $this->root_id and (!in_array($object[
"parent"], $this->expanded)
122 or !$this->format_options[
"$parent_index"][
"visible"])) {
123 $this->format_options[
"$counter"][
"visible"] =
false;
127 if ($object[
"child"] != $this->root_id) {
128 $this->format_options[
"$parent_index"][
"container"] =
true;
130 if (in_array($object[
"parent"], $this->expanded)) {
131 $this->format_options[
"$parent_index"][
"tab"][($tab - 2)] =
'minus';
133 $this->format_options[
"$parent_index"][
"tab"][($tab - 2)] =
'plus';
140 $this->
setOutput($object[
"child"], $a_depth);
157 $title =
$lng->txt(
"personal_resources");
159 $tpl->setCurrentBlock(
"icon");
161 $tpl->setVariable(
"TXT_ALT_IMG", $title);
162 $tpl->parseCurrentBlock();
164 $tpl->setCurrentBlock(
"link");
166 $tpl->setVariable(
"TITLE", $title);
170 if ($style_class !=
"") {
171 $tpl->setVariable(
"A_CLASS",
' class="' . $style_class .
'" ');
174 $tpl->parseCurrentBlock();
185 if ($a_node_id ==
"") {
190 if (!is_array(
$_SESSION[$this->expand_variable])) {
194 if ($a_node_id > 0 && !in_array($a_node_id,
$_SESSION[$this->expand_variable])) {
195 array_push(
$_SESSION[$this->expand_variable], $a_node_id);
198 if ($a_node_id < 0) {
199 $key = array_keys(
$_SESSION[$this->expand_variable], -(
int) $a_node_id);
200 unset(
$_SESSION[$this->expand_variable][$key[0]]);
214 $ilCtrl->setParameterByClass(
"ilobjworkspacerootfoldergui",
"wsp_id", $a_node_id);
215 return $ilCtrl->getLinkTargetByClass(
"ilobjworkspacerootfoldergui",
"");
218 $ilCtrl->setParameterByClass(
"ilobjworkspacefoldergui",
"wsp_id", $a_node_id);
219 return $ilCtrl->getLinkTargetByClass(
"ilobjworkspacefoldergui",
"");
241 $this->allowed_types = $a_types;
250 $this->show_details = $s_details;
259 if ($this->show_details ==
'y' && !empty($a_desc)) {
270 return $lng->txt(
"icon") .
" " .
$lng->txt($a_type);
275 return sizeof($this->tree->getChildsByType($a_node_id,
"wfld"));
280 return $this->tree->getParentId($a_node_id);
287 $html = parent::getOutput();
288 $tpl->setBodyClass(
"std");
getNodeStyleClass($a_id, $a_type)
get style class for node
getEnableSmallMode()
Get Enable Small Mode.
buildFrameTarget($a_type, $a_child=0, $a_obj_id=0)
overwritten method from base class buid link target
getIndex($a_data)
get index of format_options array from specific ref_id,parent_id private
Tree handler for personal workspace.
Explorer View for Workspace Folders.
setOutput($a_parent, $a_depth=1, $a_obj_id=0, $a_highlighted_subtree=false)
Overwritten method from class.Explorer.php to avoid checkAccess selects recursive method public...
formatHeader($tpl, $a_obj_id, $a_option)
overwritten method from base class public
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
setAllowedTypes($a_types)
set the alowed object types private
setExpand($a_node_id)
set the expand option this value is stored in a SESSION variable to save it different view (lo view...
buildDescription($a_desc, $a_id, $a_type)
overwritten method from base class buid decription
setShowDetails($s_details)
set details mode public
getImageAlt($a_def, $a_type="", $a_obj_id="")
Class ilExplorer class for explorer view in admin frame.
__construct(Container $dic, ilPlugin $plugin)
setEnableSmallMode($a_enablesmallmode)
Set Enable Small Mode.
buildLinkTarget($a_node_id, $a_type)
overwritten method from base class get link target
__construct($a_target, $a_user_id)
Constructor public.
getParentNode($a_node_id)