4 require_once
'Services/Repository/classes/class.ilRepositoryExplorer.php';
43 $this->type = $a_type;
44 $this->access = $a_access_handler;
46 parent::__construct($a_target);
53 $root =
new $root(null);
60 $this->tree = $a_tree;
62 $this->order_column =
'title';
66 $this->filter = array();
81 $this->access->checkAccess(
'read',
'', $a_ref_id))
93 public function sortNodes($a_nodes,$a_parent_obj_id)
98 public function isClickable($a_type, $a_ref_id, $a_obj_id = 0)
100 if(is_array($this->clickable) && in_array($a_type, $this->clickable) &&
110 $this->form_items[
$type] =
true;
114 $this->form_items[
$type] =
false;
118 $this->form_items = array();
122 $this->checked_items = $a_checked_items;
126 return in_array($a_id, $this->checked_items) ? true :
false;
130 $this->post_var = $a_post_var;
139 if(!array_key_exists($a_type, $this->form_items) || !$this->form_items[$a_type])
146 case self::SEL_TYPE_CHECK:
149 case self::SEL_TYPE_RADIO:
158 if (!isset($a_node_id) or !is_array($a_option))
160 $this->
ilias->raiseError(get_class($this).
"::formatObject(): Missing parameter or wrong datatype! ".
161 "node_id: ".$a_node_id.
" options:".var_dump($a_option),$this->
ilias->error_obj->WARNING);
165 foreach ($a_option[
"tab"] as $picture)
167 if ($picture ==
'plus')
169 $tpl->setCurrentBlock(
"expander");
170 $tpl->setVariable(
"EXP_DESC", $lng->txt(
"expand"));
172 $tpl->setVariable(
"LINK_NAME", $a_node_id);
173 $tpl->setVariable(
"LINK_TARGET_EXPANDER",
$target);
174 $tpl->setVariable(
"IMGPATH", $this->
getImage(
"browser/plus.png"));
175 $tpl->parseCurrentBlock();
179 if ($picture ==
'minus' && $this->show_minus)
181 $tpl->setCurrentBlock(
"expander");
182 $tpl->setVariable(
"EXP_DESC", $lng->txt(
"collapse"));
184 $tpl->setVariable(
"LINK_NAME", $a_node_id);
185 $tpl->setVariable(
"LINK_TARGET_EXPANDER",
$target);
186 $tpl->setVariable(
"IMGPATH", $this->
getImage(
"browser/minus.png"));
187 $tpl->parseCurrentBlock();
194 $tpl->setCurrentBlock(
"blank");
195 $tpl->setVariable(
"BLANK_PATH", $this->
getImage(
"browser/blank.png"));
196 $tpl->parseCurrentBlock();
199 if ($this->output_icons)
201 $tpl->setCurrentBlock(
"icon");
202 $tpl->setVariable(
"ICON_IMAGE" , $this->
getImage(
"icon_".$a_option[
"type"].
".svg", $a_option[
"type"], $a_obj_id));
204 $tpl->setVariable(
"TARGET_ID" ,
"iconid_".$a_node_id);
205 $this->iconList[] =
"iconid_".$a_node_id;
206 $tpl->setVariable(
"TXT_ALT_IMG", $lng->txt($a_option[
"desc"]));
207 $tpl->parseCurrentBlock();
210 if(strlen($formItem = $this->
buildFormItem($a_node_id, $a_option[
'type'])))
212 $tpl->setCurrentBlock(
'check');
213 $tpl->setVariable(
'OBJ_CHECK', $formItem);
214 $tpl->parseCurrentBlock();
217 if ($this->
isClickable($a_option[
"type"], $a_node_id,$a_obj_id))
219 $tpl->setCurrentBlock(
"link");
227 if ($style_class !=
"")
229 $tpl->setVariable(
"A_CLASS",
' class="'.$style_class.
'" ' );
232 if (($onclick = $this->
buildOnClick($a_node_id, $a_option[
"type"], $a_option[
"title"])) !=
"")
234 $tpl->setVariable(
"ONCLICK",
"onClick=\"$onclick\"");
237 $tpl->setVariable(
"LINK_NAME", $a_node_id);
239 $this->
buildTitle($a_option[
"title"], $a_node_id, $a_option[
"type"]),
240 $this->textwidth,
true));
242 $this->
buildDescription($a_option[
"description"], $a_node_id, $a_option[
"type"]), $this->textwidth,
true));
243 $frame_target = $this->
buildFrameTarget($a_option[
"type"], $a_node_id, $a_option[
"obj_id"]);
244 if ($frame_target !=
"")
246 $tpl->setVariable(
"TARGET",
" target=\"".$frame_target.
"\"");
248 $tpl->parseCurrentBlock();
252 $tpl->setCurrentBlock(
"text");
254 $this->
buildTitle($a_option[
"title"], $a_node_id, $a_option[
"type"]), $this->textwidth,
true));
256 $this->
buildDescription($a_option[
"desc"], $a_node_id, $a_option[
"type"]), $this->textwidth,
true));
257 $tpl->parseCurrentBlock();
260 $tpl->setCurrentBlock(
"list_item");
261 $tpl->parseCurrentBlock();
262 $tpl->touchBlock(
"element");
279 $tpl->setCurrentBlock(
"icon");
280 $title = $this->tree->getNodeData($this->root_id);
281 $title = $title[
"title"];
284 $title = $lng->txt(
"personal_workspace");
288 $tpl->setVariable(
"TXT_ALT_IMG", $title);
289 $tpl->parseCurrentBlock();
291 if(strlen($formItem = $this->
buildFormItem($a_obj_id, $a_option[
'type'])))
293 $tpl->setCurrentBlock(
'check');
294 $tpl->setVariable(
'OBJ_CHECK', $formItem);
295 $tpl->parseCurrentBlock();
298 $tpl->setVariable(
'OBJ_TITLE', $title);
303 $this->clickable[] = $a_type;
308 $this->custom_link_target = $a_target;
313 if(!$this->custom_link_target)
315 return parent::buildLinkTarget($a_node_id, $a_type);
318 $link = $this->custom_link_target.
"&".$this->target_get.
"=".$a_node_id;
static getClassByType($a_obj_type)
Get class by type.
sortNodes($a_nodes, $a_parent_obj_id)
static _getIcon($a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
setFilterMode($a_mode=IL_FM_NEGATIVE)
set filter mode
getNodeStyleClass($a_id, $a_type)
get style class for node
showChilds($a_ref_id, $a_obj_id=0)
buildLinkTarget($a_node_id, $a_type)
formatHeader(&$tpl, $a_obj_id, $a_option)
addFormItemForType($type)
createReference($a_object_id)
Create workspace reference for object.
getTreeId()
get tree id public
Access handler for personal workspace.
static shortenText($a_str, $a_len, $a_dots=false, $a_next_blank=false, $a_keep_extension=false)
shorten a string to given length.
isClickable($a_type, $a_ref_id, $a_obj_id=0)
removeFormItemForType($type)
Tree handler for personal workspace.
setFiltered($a_bool)
active/deactivate the filter public
createTarget($a_type, $a_node_id, $a_highlighted_subtree=false, $a_append_anch=true)
Creates Get Parameter private.
buildOnClick($a_node_id, $a_type, $a_title)
get onclick event handling (may be overwritten by derived classes)
buildFormItem($a_node_id, $a_type)
__construct($a_type, $a_target, $a_session_variable, ilWorkspaceTree $a_tree, ilWorkspaceAccessHandler $a_access_handler)
Constructor public.
getImage($a_name, $a_type="", $a_obj_id="")
get image path
formatObject(&$tpl, $a_node_id, $a_option, $a_obj_id=0)
setCheckedItems($a_checked_items=array())
redirection script todo: (a better solution should control the processing via a xml file) ...
setTypeClickable($a_type)
buildFrameTarget($a_type, $a_child=0, $a_obj_id=0)
STATIC, do not use $this inside!
static formRadioButton($checked, $varname, $value, $onclick=null, $disabled=false)
??? public
buildTitle($a_title, $a_id, $a_type)
standard implementation for title, may be overwritten by derived classes
isVisible($a_ref_id, $a_type)
setSessionExpandVariable($a_var_name="expand")
set name of expand session variable
addFilter($a_item)
adds item to the filter public
setCustomLinkTarget($a_target)
addTree($a_tree_id, $a_node_id=-1)
create a new tree to do: ???
buildDescription($a_desc, $a_id, $a_type)
standard implementation for description, may be overwritten by derived classes
static formCheckbox($checked, $varname, $value, $disabled=false)
??? public
readRootId()
read root id from database