ILIAS  release_7 Revision v7.30-3-g800a261c036
class.ilSamlIdpSelectionTableGUI.php
Go to the documentation of this file.
1<?php declare(strict_types=1);
2/* Copyright (c) 1998-2017 ILIAS open source, Extended GPL, see docs/LICENSE */
3
8{
12 public function __construct($a_parent_obj, $a_parent_cmd = '', $a_template_context = '')
13 {
14 $this->setId('saml_idp_selection');
15 parent::__construct($a_parent_obj, $a_parent_cmd, $a_template_context);
16
17 $this->disable('sort');
18 $this->disable('header');
19 $this->disable('linkbar');
20 $this->disable('numinfo');
21 $this->setLimit(PHP_INT_MAX);
22 $this->setShowRowsSelector(false);
23
24 $this->setTitle($this->lng->txt('auth_saml_idp_selection_table_title'));
25 $this->setDescription($this->lng->txt('auth_saml_idp_selection_table_desc'));
26
27 $this->setRowTemplate('tpl.saml_idp_selection_row.html', 'Services/Saml');
28 }
29}
An exception for terminatinating execution or to throw for unit testing.
Class ilSamlIdpSelectionTableGUI.
__construct($a_parent_obj, $a_parent_cmd='', $a_template_context='')
ilTable2GUI constructor.
Class ilTable2GUI.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setLimit($a_limit=0, $a_default_limit=0)
set max.
setId($a_val)
Set id.
setDescription($a_val)
Set description.
disable($a_module_name)
diesables particular modules of table
__construct(Container $dic, ilPlugin $plugin)
@inheritDoc