19 declare(strict_types=1);
43 bool $a_in_use =
false,
44 bool $a_manage_perm =
false 48 $this->
ctrl = $DIC->ctrl();
49 $this->
lng = $DIC->language();
50 $this->
access = $DIC->access();
51 $ilCtrl = $DIC->ctrl();
52 $lng = $DIC->language();
53 $this->ui_fac = $DIC->ui()->factory();
54 $this->ui_ren = $DIC->ui()->renderer();
55 $this->resource_manager = $DIC->skills()->internal()->manager()->getResourceManager();
57 $this->skill_id = $a_skill_id;
59 $this->tref_id = $a_tref_id;
60 $this->in_use = $a_in_use;
61 $this->manage_perm = $a_manage_perm;
67 if ($this->tref_id == 0) {
71 if ($this->tref_id == 0 && !$this->in_use) {
72 if ($this->manage_perm) {
80 $this->
addColumn($this->
lng->txt(
"skmg_lp_triggers_level"));
81 if ($this->manage_perm) {
89 $this->
setRowTemplate(
"tpl.skill_level_row.html",
"components/ILIAS/Skill");
92 if ($this->tref_id == 0 && !$this->in_use && $this->manage_perm) {
94 if (count($this->
getData()) > 0) {
105 if ($a_field ==
"nr") {
113 $levels = $this->skill->getLevelData();
117 foreach ($this->resource_manager->getResources($this->skill_id, $this->tref_id) as $level_id => $item) {
118 $res[$level_id] = $item;
121 foreach ($levels as $idx => $item) {
122 if (isset(
$res[$item[
"id"]])) {
123 $levels[$idx][
"ressources"] =
$res[$item[
"id"]];
130 protected function fillRow(array $a_set): void
135 if ($this->tref_id == 0 && !$this->in_use) {
136 if ($this->manage_perm) {
137 $this->tpl->setCurrentBlock(
"cb");
138 $this->tpl->setVariable(
"CB_ID", $a_set[
"id"]);
139 $this->tpl->parseCurrentBlock();
142 $this->tpl->setCurrentBlock(
"nr");
143 $this->tpl->setVariable(
"ORD_ID", $a_set[
"id"]);
144 $this->tpl->setVariable(
"VAL_NR", ((
int) $a_set[
"nr"]) * 10);
145 if (!$this->manage_perm) {
146 $this->tpl->touchBlock(
"disabled");
148 $this->tpl->parseCurrentBlock();
151 $this->tpl->setCurrentBlock(
"cmd");
152 if ($this->manage_perm) {
153 $this->tpl->setVariable(
"TXT_CMD",
$lng->
txt(
"edit"));
155 $ilCtrl->
setParameter($this->parent_obj,
"level_id", $a_set[
"id"]);
156 if ($this->tref_id == 0) {
157 $this->tpl->setVariable(
159 $ilCtrl->getLinkTarget($this->parent_obj,
"editLevel")
162 $this->tpl->setVariable(
164 $ilCtrl->getLinkTarget($this->parent_obj,
"showLevelResources")
167 $this->tpl->parseCurrentBlock();
169 $this->tpl->setVariable(
"TXT_TITLE", $a_set[
"title"]);
170 $this->tpl->setVariable(
"TXT_DESCRIPTION", $a_set[
"description"]);
171 if (isset($a_set[
"ressources"]) && is_array($a_set[
"ressources"])) {
172 foreach ($a_set[
"ressources"] as $ressource) {
175 $robj_icon = $this->ui_fac->symbol()->icon()->standard(
177 $this->
lng->txt(
"icon") .
" " . $this->
lng->txt($robj_type),
183 if ($ressource->getImparting()) {
184 $this->tpl->setCurrentBlock(
"ressource_sugg");
185 $this->tpl->setVariable(
"RSRC_IMG", $this->ui_ren->render($robj_icon));
186 $this->tpl->setVariable(
"RSRC_TITLE", $robj_title);
187 $this->tpl->setVariable(
"RSRC_URL", $robj_link);
188 $this->tpl->parseCurrentBlock();
191 if ($ressource->getTrigger()) {
192 $this->tpl->setCurrentBlock(
"ressource_trigg");
193 $this->tpl->setVariable(
"RSRC_IMG", $this->ui_ren->render($robj_icon));
194 $this->tpl->setVariable(
"RSRC_TITLE", $robj_title);
195 $this->tpl->setVariable(
"RSRC_URL", $robj_link);
196 $this->tpl->parseCurrentBlock();
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)
setEnableTitle(bool $a_enabletitle)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setDescription(string $a_val)
__construct(int $a_skill_id, $a_parent_obj, string $a_parent_cmd, int $a_tref_id=0, bool $a_in_use=false, bool $a_manage_perm=false)
static _lookupObjId(int $ref_id)
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
ILIAS UI Renderer $ui_ren
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
numericOrdering(string $a_field)
ILIAS Skill Resource SkillResourcesManager $resource_manager
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
setLimit(int $a_limit=0, int $a_default_limit=0)
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)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)
setEnableHeader(bool $a_enableheader)