19 declare(strict_types=1);
31 public function __construct(
object $a_parent_obj,
string $a_parent_cmd =
"")
36 $this->
setId(
'ecs_server_list');
38 $this->
access = $DIC->access();
39 $this->ui_factory = $DIC->ui()->factory();
40 $this->ui_renderer = $DIC->ui()->renderer();
48 $this->
setTitle($this->
lng->txt(
'ecs_available_ecs'));
49 $this->
setRowTemplate(
'tpl.ecs_server_row.html',
'components/ILIAS/WebServices/ECS');
51 $this->
addColumn($this->
lng->txt(
'ecs_tbl_active'),
'',
'1%');
54 if ($this->
access->checkAccess(
'write',
'', (
int) $_REQUEST[
"ref_id"])) {
63 protected function fillRow(array $a_set): void
66 $this->
ctrl->setParameterByClass(
'ilecsmappingsettingsgui',
'server_id', $a_set[
'server_id']);
68 if ($a_set[
'active']) {
70 $this->tpl->setVariable(
'TXT_OK', $this->
lng->txt(
'ecs_activated'));
73 $this->tpl->setVariable(
'TXT_OK', $this->
lng->txt(
'ecs_inactivated'));
78 $this->tpl->setVariable(
'LINK_EDIT', $this->
ctrl->getLinkTarget($this->getParentObject(),
'edit'));
79 $this->tpl->setVariable(
'TXT_SRV_ADDR', $this->
lng->txt(
'ecs_server_addr'));
84 $this->tpl->setVariable(
'VAL_DESC', $this->
lng->txt(
'ecs_not_configured'));
89 $this->tpl->setVariable(
'TXT_CERT_VALID', $this->
lng->txt(
'ecs_cert_valid_until'));
95 $this->tpl->setCurrentBlock(
'invalid');
98 $this->tpl->setCurrentBlock(
'valid');
101 $this->tpl->parseCurrentBlock();
104 if ($this->
access->checkAccess(
'write',
'', (
int) $_REQUEST[
"ref_id"])) {
109 $items[] = [$this->
lng->txt(
'ecs_deactivate'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'deactivate')];
111 $items[] = [$this->
lng->txt(
'ecs_activate'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'activate')];
118 $this->tpl->setCurrentBlock(
"actions");
120 foreach ($items as $item) {
121 $render_items[] = $this->ui_factory->button()->shy(...$item);
123 $this->tpl->setVariable(
125 $this->ui_renderer->render($this->ui_factory->dropdown()->standard($render_items)->withLabel($this->
lng->txt(
'actions')))
127 $this->tpl->parseCurrentBlock();
139 $tmp[
'server_id'] =
$server->getServerId();
140 $tmp[
'active'] =
$server->isEnabled();
ILIAS UI Renderer $ui_renderer
__construct(object $a_parent_obj, string $a_parent_cmd="")
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
parse(ilECSServerSettings $servers)
Parse available servers.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
fillRow(array $a_set)
Fill row.
Collection of ECS settings.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
static getInstanceByServerId(int $a_server_id)
Get singleton instance per server.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
getServers(int $server_type)
Get servers The function must be called with ALL_SERVER, ACTIVE_SERVER or INACTIVE_SERVER.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
ILIAS UI Factory $ui_factory
__construct(Container $dic, ilPlugin $plugin)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
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)