36 $a_write_permission =
false 40 $this->ctrl = $DIC->ctrl();
41 $this->lng = $DIC->language();
42 $this->access = $DIC->access();
43 $this->tree = $DIC->repositoryTree();
45 $ilCtrl = $DIC->ctrl();
46 $lng = $DIC->language();
48 $this->level_id = $a_level_id;
53 $this->
setData($this->resources->getResourcesOfLevel($a_level_id));
57 $this->
addColumn($this->lng->txt(
"type"),
"",
"1px");
58 $this->
addColumn($this->lng->txt(
"title"),
"");
59 $this->
addColumn($this->lng->txt(
"path"));
60 $this->
addColumn($this->lng->txt(
"skmg_suggested"));
61 $this->
addColumn($this->lng->txt(
"skmg_lp_triggers_level"));
64 $this->
setRowTemplate(
"tpl.level_resources_row.html",
"Services/Skill");
66 if ($a_write_permission) {
80 $ref_id = $a_set[
"rep_ref_id"];
84 if ($a_set[
"imparting"]) {
85 $this->tpl->touchBlock(
"sugg_checked");
87 $this->tpl->setCurrentBlock(
"suggested_checkbox");
88 $this->tpl->setVariable(
"SG_ID", $ref_id);
89 $this->tpl->parseCurrentBlock();
92 if ($a_set[
"trigger"]) {
93 $this->tpl->touchBlock(
"trig_checked");
95 $this->tpl->setCurrentBlock(
"trigger_checkbox");
96 $this->tpl->setVariable(
"TR_ID", $ref_id);
97 $this->tpl->parseCurrentBlock();
102 $this->tpl->setVariable(
"ID", $ref_id);
104 $path =
$tree->getPathFull($ref_id);
105 $path_items = array();
106 foreach ($path as $p) {
107 if ($p[
"type"] !=
"root" && $p[
"child"] != $ref_id) {
108 $path_items[] = $p[
"title"];
111 $this->tpl->setVariable(
"PATH", implode(
" > ", $path_items));
static _getIcon( $a_obj_id="", $a_size="big", $a_type="", $a_offline=false)
Get icon for repository item.
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
static _lookupTitle($a_id)
lookup object title
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
__construct( $a_parent_obj, $a_parent_cmd, $a_skill_id, $a_tref_id, $a_level_id, $a_write_permission=false)
Constructor.
static _lookupObjId($a_id)
Manages resources for skills.
addMultiCommand($a_cmd, $a_text)
Add Command button.
TableGUI class for skill level resources.
static img($a_src, $a_alt=null, $a_width="", $a_height="", $a_border=0, $a_id="", $a_class="")
Build img tag.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
static isSupportedObjectType($type)
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
fillRow($a_set)
Fill table row.