19 declare(strict_types=1);
39 $this->
ctrl = $DIC->ctrl();
40 $this->
lng = $DIC->language();
41 $this->tpl = $DIC[
"tpl"];
42 $this->
ui = $DIC->ui();
45 $this->
setId(
"cont_skll_mem_" . $this->cont_obj->getId());
46 $this->cont_skill_manager = $DIC->skills()->internalContainer()->manager()->getSkillManager(
47 $this->cont_obj->getId(),
48 $this->cont_obj->getRefId()
53 $this->
setTitle($this->
lng->txt(
"cont_cont_skills"));
58 $this->
addColumn($this->
lng->txt(
"cont_mem_skills"),
"");
67 $this->
setRowTemplate(
"tpl.cont_member_skill_row.html",
"components/ILIAS/Container/Skills");
70 $this->
addMultiCommand(
"publishAssignments", $this->
lng->txt(
"cont_publish_assignment"));
72 $this->
addMultiCommand(
"deassignCompetencesConfirm", $this->
lng->txt(
"cont_deassign_competence"));
80 foreach ($p->getMembers() as $m) {
84 "name" => $name[
"lastname"] .
", " . $name[
"firstname"],
85 "login" => $name[
"login"],
92 protected function fillRow(array $a_set): void
102 foreach ($this->cont_skill_manager->getMemberSkillLevelsForContainerOrdered(
$user_id) as $sk) {
103 $tpl->setCurrentBlock(
"level");
106 $tpl->setVariable(
"PATH", $this->
getParentObject()->getPathString($sk->getBaseSkillId(), $sk->getTrefId()));
107 $tpl->parseCurrentBlock();
111 if ($this->cont_skill_manager->getPublished(
$user_id)) {
118 $tpl->setVariable(
"NAME", $a_set[
"name"]);
119 $tpl->setVariable(
"ID", $a_set[
"id"]);
120 $tpl->setVariable(
"LOGIN", $a_set[
"login"]);
129 if (!$this->cont_skill_manager->getPublished(
$user_id)) {
133 $dd = $ui->
factory()->dropdown()->standard($items);
135 $tpl->setVariable(
"ACTIONS", $ui->
renderer()->render($dd));
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getInstanceByObjId(int $a_obj_id)
Get instance by obj type.
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
static _lookupName(int $a_user_id)
lookup user name
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static lookupLevelTitle(int $a_id)
TableGUI class for container members / skill assignments.
Provides fluid interface to RBAC services.
setDefaultOrderField(string $a_defaultorderfield)
renderer()
Get a renderer for UI components.
ContainerSkillManager $cont_skill_manager
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
__construct(ilContSkillAdminGUI $a_parent_obj, string $a_parent_cmd, ilContainer $cont_obj)
setDefaultOrderDirection(string $a_defaultorderdirection)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
Container skills administration.
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
factory()
Get the factory that crafts UI components.
static _lookupContainerSetting(int $a_id, string $a_keyword, ?string $a_default_value=null)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
addMultiCommand(string $a_cmd, string $a_text)