19 declare(strict_types=1);
33 public function __construct(
object $a_parent_obj,
string $a_parent_cmd)
37 $this->review = $DIC[
'rbacreview'];
42 $this->
addColumn($this->
lng->txt(
'title'),
'title',
"70%");
43 $this->
addColumn($this->
lng->txt(
'context'),
'context',
"30%");
46 $this->
setRowTemplate(
"tpl.show_role_selection_row.html",
"components/ILIAS/AccessControl");
51 protected function fillRow(array $a_set): void
53 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
54 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
'title']);
55 if (strlen($a_set[
'description'])) {
56 $this->tpl->setVariable(
'VAL_DESC', $a_set[
'description']);
58 $this->tpl->setVariable(
'VAL_CONTEXT', $a_set[
'context']);
61 public function parse(array $entries): void
64 foreach ($entries as $entry) {
65 $role =
new ilObjRole($entry[
'obj_id'],
false);
66 $tmp_arr[
'id'] = $entry[
'obj_id'];
67 $tmp_arr[
'title'] = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
68 $role->getPresentationTitle()
70 $tmp_arr[
'description'] = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
71 $role->getDescription()
73 $tmp_arr[
'context'] = $this->
refinery->encode()->htmlSpecialCharsAsEntities()->transform(
77 $records_arr[] = $tmp_arr;
setFormAction(string $a_form_action, bool $a_multipart=false)
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
__construct(object $a_parent_obj, string $a_parent_cmd)
__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)