ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
interface.ilSamlCommands.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22{
23 public const string CMD_LIST_IDPS = 'listIdps';
24 public const string CMD_TABLE_ACTIONS = 'handleTableActions';
25 public const string CMD_SHOW_NEW_IDP_FORM = 'showNewIdpForm';
26 public const string CMD_SAVE_NEW_IDP = 'saveNewIdp';
27 public const string CMD_DELETE_IDP = 'deleteIdp';
28 public const string CMD_SAVE_SETTINGS = 'saveSettings';
29 public const string CMD_SHOW_SETTINGS = 'showSettings';
30 public const string CMD_SHOW_IDP_SETTINGS = 'showIdpSettings';
31 public const string CMD_SAVE_IDP_SETTINGS = 'saveIdpSettings';
32 public const string CMD_SAVE_USER_ATTRIBUTE_MAPPING = 'saveUserAttributeMapping';
33 public const string CMD_SHOW_USER_ATTRIBUTE_MAPPING_FORM = 'showUserAttributeMappingForm';
34
35 public const string TABLE_ACTION_CONFIRM_DELETE_IDP = 'confirmDeleteIdp';
36 public const string TABLE_ACTION_DEACTIVATE_IDP = 'deactivateIdp';
37 public const string TABLE_ACTION_ACTIVATE_IDP = 'activateIdp';
38 public const string TABLE_ACTION_SHOW_IDP_SETTINGS = 'showIdpSettings';
39
41 public const array GLOBAL_COMMANDS = [
46 ];
47
49 public const array GLOBAL_ENTITY_COMMANDS = [
51 ];
52
54 public const array GLOBAL_ENTITY_TABLE_ACTIONS = [
58 ];
59}
const array GLOBAL_ENTITY_COMMANDS
const string CMD_SHOW_IDP_SETTINGS
const string TABLE_ACTION_DEACTIVATE_IDP
const string CMD_SAVE_IDP_SETTINGS
const string CMD_SAVE_USER_ATTRIBUTE_MAPPING
const string TABLE_ACTION_ACTIVATE_IDP
const string CMD_SHOW_NEW_IDP_FORM
const array GLOBAL_ENTITY_TABLE_ACTIONS
const string CMD_SHOW_USER_ATTRIBUTE_MAPPING_FORM
const string CMD_TABLE_ACTIONS
const string TABLE_ACTION_CONFIRM_DELETE_IDP
const string CMD_SHOW_SETTINGS
const string CMD_SAVE_SETTINGS
const string TABLE_ACTION_SHOW_IDP_SETTINGS