20 public function __construct($a_parent_obj, $a_parent_cmd, $a_cskill_id)
24 $this->ctrl = $DIC->ctrl();
25 $this->lng = $DIC->language();
26 $ilCtrl = $DIC->ctrl();
27 $lng = $DIC->language();
29 $parts = explode(
":", $a_cskill_id);
30 $this->skill_id = (int) $parts[0];
31 $this->tref_id = (int) $parts[1];
35 $this->
setData($this->skill->getLevelData());
36 $this->
setTitle($this->skill->getTitle() .
", " .
37 $lng->txt(
"skmg_skill_levels"));
39 $this->
addColumn($this->lng->txt(
"title"));
40 $this->
addColumn($this->lng->txt(
"actions"));
43 $this->
setRowTemplate(
"tpl.skill_level_profile_assignment_row.html",
"Services/Skill");
54 $this->tpl->setCurrentBlock(
"cmd");
55 $this->tpl->setVariable(
"CMD",
$lng->txt(
"skmg_assign_level"));
56 $ilCtrl->setParameter($this->parent_obj,
"level_id", (
int) $a_set[
"id"]);
57 $this->tpl->setVariable(
"CMD_HREF", $ilCtrl->getLinkTarget(
59 "assignLevelToProfile" 61 $ilCtrl->setParameter($this->parent_obj,
"level_id",
$_GET[
"level_id"]);
62 $this->tpl->parseCurrentBlock();
64 $this->tpl->setVariable(
"TITLE", $a_set[
"title"]);
fillRow($a_set)
Fill table row.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
TableGUI class for skill profile skill level assignment.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__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.
__construct($a_parent_obj, $a_parent_cmd, $a_cskill_id)
Constructor.