19 declare(strict_types=1);
29 public function __construct(?
object $a_parent_obj,
string $a_parent_cmd =
"",
string $a_template_context =
"")
34 $this->rbacSystem = $DIC->rbac()->system();
36 $http_wrapper = $DIC->http()->wrapper();
38 if ($http_wrapper->query()->has(
'ref_id')) {
39 $this->ref_id = (
int) $http_wrapper->query()->retrieve(
44 $this->
setId(
'ldap_server_list');
47 $this->
setRowTemplate(
'tpl.ldap_server_row.html',
'Services/LDAP');
66 protected function fillRow(array $a_set): void
68 if ($a_set[
'active']) {
70 $this->tpl->setVariable(
'TXT_OK', $this->
lng->txt(
'active'));
73 $this->tpl->setVariable(
'TXT_OK', $this->
lng->txt(
'inactive'));
76 $this->tpl->setVariable(
'VAL_TITLE', $a_set[
"name"]);
80 $this->tpl->setVariable(
'VAL_USER', $user);
83 $this->tpl->setVariable(
'EDIT_LINK', $this->
ctrl->getLinkTarget($this->getParentObject(),
'editServerSettings'));
86 if ($this->rbacSystem->checkAccess(
"write", $this->ref_id)) {
88 $list->setSelectionHeaderClass(
'small');
89 $list->setItemLinkClass(
'small');
90 $list->setId(
'actl_' . $a_set[
'server_id']);
91 $list->setListTitle($this->
lng->txt(
'actions'));
92 $list->addItem($this->
lng->txt(
'edit'),
'', $this->
ctrl->getLinkTarget($this->
getParentObject(),
'editServerSettings'));
94 if ($a_set[
'active']) {
96 $this->
lng->txt(
'deactivate'),
102 $this->
lng->txt(
'activate'),
109 $this->
lng->txt(
'delete'),
114 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static _getAllServer()
Get list of all configured servers.
static _getExternalAccountsByAuthMode(string $a_auth_mode, bool $a_read_auth_default=false)
Get list of external account by authentication method Note: If login == ext_account for two user with...
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
Refinery Factory $refinery