19 declare(strict_types=1);
33 public function __construct(
object $a_parent_obj,
string $a_parent_cmd)
38 $this->
renderer = $DIC->ui()->renderer();
39 $this->ui_factory = $DIC->ui()->factory();
41 $this->
setId(
'accessperm' . $this->parent_obj->user->getId());
46 $this->
setRowTemplate(
"tpl.access_permissions_status_row.html",
"components/ILIAS/AccessControl");
48 $this->
addColumn($this->
lng->txt(
"status"),
"status",
"5%");
49 $this->
addColumn($this->
lng->txt(
"operation"),
"operation",
"45%");
50 $this->
addColumn($this->
lng->txt(
"info_from_role"),
"role_ownership");
56 protected function fillRow(array $a_set): void
64 $img_info =
$lng->
txt(
"info_assigned");
67 $img_info =
$lng->
txt(
"info_not_assigned");
69 $this->tpl->setVariable(
"ICON", $this->
renderer->render(
70 $this->ui_factory->symbol()->icon()->custom($img_path, $img_info)
72 $this->tpl->setVariable(
"IMG_INFO", $img_info);
74 $this->tpl->setVariable(
"TXT_OPERATION", $a_set[
"operation"]);
76 foreach ($a_set[
"role_ownership"] as $role_ownership) {
77 $this->tpl->setCurrentBlock(
"role_ownership");
78 $this->tpl->setVariable(
"TXT_ROLE_OWNERSHIP", $role_ownership);
79 $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...
Table for Acces Permissons in Permission > Permission of User.
ILIAS UI Factory $ui_factory
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
ILIAS UI Renderer $renderer
__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)
__construct(object $a_parent_obj, string $a_parent_cmd)
Constructor.
disable(string $a_module_name)
fillRow(array $a_set)
Fill a single data row.
setEnableHeader(bool $a_enableheader)