19 declare(strict_types=1);
    27     public function __construct(
object $a_parent_obj, 
string $a_parent_cmd = 
'')
    32         $ilCtrl = $DIC[
'ilCtrl'];
    35         $this->
ctrl = $ilCtrl;
    39         $this->
addColumn($this->
lng->txt(
'ldap_rule_type'), 
'type', 
"20%");
    40         $this->
addColumn($this->
lng->txt(
'ldap_ilias_role'), 
'role', 
"30%");
    41         $this->
addColumn($this->
lng->txt(
'ldap_rule_condition'), 
'condition', 
"20%");
    42         $this->
addColumn($this->
lng->txt(
'ldap_add_remove'), 
'', 
'30%');
    45         $this->
setRowTemplate(
"tpl.show_role_assignment_row.html", 
"components/ILIAS/LDAP");
    51     protected function fillRow(array $a_set): void
    53         $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
    54         $this->tpl->setVariable(
'VAL_TYPE', $a_set[
'type']);
    55         $this->tpl->setVariable(
'VAL_CONDITION', $a_set[
'condition']);
    56         $this->tpl->setVariable(
'VAL_ROLE', $a_set[
'role']);
    57         $this->tpl->setVariable(
'TXT_EDIT', $this->
lng->txt(
'edit'));
    61             $this->tpl->setVariable(
'STATA_ALT', $this->
lng->txt(
'yes'));
    64             $this->tpl->setVariable(
'STATA_ALT', $this->
lng->txt(
'no'));
    66         if ($a_set[
'remove']) {
    68             $this->tpl->setVariable(
'STATB_ALT', $this->
lng->txt(
'yes'));
    71             $this->tpl->setVariable(
'STATB_ALT', $this->
lng->txt(
'no'));
    76         $this->tpl->setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTarget($this->getParentObject(), 
'editRoleAssignment'));
    85     public function parse($rule_objs): void
    88         foreach ($rule_objs as $rule) {
    89             $tmp_arr[
'id'] = $rule->getRuleId();
    91             switch ($rule->getType()) {
    93                     $tmp_arr[
'type'] = $this->
lng->txt(
'ldap_role_by_attribute');
    96                     $tmp_arr[
'type'] = $this->
lng->txt(
'ldap_role_by_group');
    99                     $tmp_arr[
'type'] = $this->
lng->txt(
'ldap_role_by_plugin');
   103             $tmp_arr[
'condition'] = $rule->conditionToString();
   104             $tmp_arr[
'add'] = $rule->isAddOnUpdateEnabled();
   105             $tmp_arr[
'remove'] = $rule->isRemoveOnUpdateEnabled();
   109             $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. 
 
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory) 
 
setDefaultOrderDirection(string $a_defaultorderdirection)
 
fillRow(array $a_set)
DuplicatedCode 
 
__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)