1 <?php declare(strict_types=1);
21 public function __construct($a_parent_obj, $a_parent_cmd =
"")
27 $f = $DIC->ui()->factory();
28 $renderer = $DIC->ui()->renderer();
30 $this->
setId(
'saml_idp_list');
33 $this->ctrl =
$GLOBALS[
'DIC']->ctrl();
35 $this->
setTitle($this->lng->txt(
'auth_saml_idps'));
37 $federationMdUrl = rtrim(
ILIAS_HTTP_PATH,
'/') .
'/Services/Saml/lib/metadata.php?client_id=' . CLIENT_ID;
40 $this->lng->txt(
'auth_saml_idps_info'),
41 'auth/saml/config/config.php',
42 'auth/saml/config/authsources.php',
43 $renderer->render(
$f->link()->standard(
'https://simplesamlphp.org/docs/stable/simplesamlphp-sp',
'https://simplesamlphp.org/docs/stable/simplesamlphp-sp')),
44 $renderer->render(
$f->link()->standard($federationMdUrl, $federationMdUrl))
48 $this->
addColumn($this->lng->txt(
'saml_tab_head_idp'),
'',
'80%');
49 $this->
addColumn($this->lng->txt(
'active'),
'',
'5%');
50 $this->
addColumn($this->lng->txt(
'actions'),
'',
'15%');
63 $idp_data[] = $idp->toArray();
74 if ($a_set[
'is_active']) {
76 $this->tpl->setVariable(
'TXT_OK', $this->lng->txt(
'active'));
79 $this->tpl->setVariable(
'TXT_OK', $this->lng->txt(
'inactive'));
82 $this->tpl->setVariable(
'NAME', $a_set[
'entity_id']);
84 if ($this->dic->rbac()->system()->checkAccess(
'write',
$_GET[
'ref_id'])) {
86 $list->setSelectionHeaderClass(
'small');
87 $list->setItemLinkClass(
'small');
88 $list->setId(
'actl_' . $a_set[
'idp_id']);
89 $list->setListTitle($this->lng->txt(
'actions'));
91 $this->ctrl->setParameter($this->
getParentObject(),
'saml_idp_id', $a_set[
'idp_id']);
92 $list->addItem($this->lng->txt(
'edit'),
'', $this->ctrl->getLinkTarget($this->
getParentObject(),
'showIdpSettings'));
93 if ($a_set[
'is_active']) {
94 $list->addItem($this->lng->txt(
'deactivate'),
'', $this->ctrl->getLinkTarget($this->
getParentObject(),
'deactivateIdp'));
96 $list->addItem($this->lng->txt(
'activate'),
'', $this->ctrl->getLinkTarget($this->
getParentObject(),
'activateIdp'));
98 $list->addItem($this->lng->txt(
'delete'),
'', $this->ctrl->getLinkTarget($this->
getParentObject(),
'confirmDeleteIdp'));
101 $this->tpl->setVariable(
'ACTIONS', $list->getHTML());
setDescription($a_val)
Set description.
getParentObject()
Get parent object.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
setRowTemplate($a_template, $a_template_dir="")
Set row template.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
__construct($a_parent_obj, $a_parent_cmd="")
ilSamlIdpTableGUI constructor.