本文整理汇总了PHP中AuthLDAP::showFormGroupsConfig方法的典型用法代码示例。如果您正苦于以下问题:PHP AuthLDAP::showFormGroupsConfig方法的具体用法?PHP AuthLDAP::showFormGroupsConfig怎么用?PHP AuthLDAP::showFormGroupsConfig使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AuthLDAP
的用法示例。
在下文中一共展示了AuthLDAP::showFormGroupsConfig方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: AuthLDAP
include GLPI_ROOT . "/inc/includes.php";
header("Content-Type: text/html; charset=UTF-8");
header_nocache();
if (!isset($_POST['id'])) {
exit;
}
if (!isset($_REQUEST['glpi_tab'])) {
exit;
}
checkRight('config', 'r');
$authldap = new AuthLDAP();
if ($_POST['id'] > 0 && $authldap->can($_POST['id'], 'r')) {
switch ($_REQUEST['glpi_tab']) {
case -1:
$authldap->showFormUserConfig($_POST['id'], $_POST['target']);
$authldap->showFormGroupsConfig($_POST['id'], $_POST['target']);
$authldap->showFormAdvancedConfig($_POST['id'], $_POST['target']);
$authldap->showFormReplicatesConfig($_POST['id'], $_POST['target']);
Log::showForItem($authldap);
break;
case 2:
$authldap->showFormUserConfig($_POST['id'], $_POST['target']);
break;
case 3:
$authldap->showFormGroupsConfig($_POST['id'], $_POST['target']);
break;
case 4:
$authldap->showFormEntityConfig($_POST['id'], $_POST['target']);
break;
case 5:
$authldap->showFormAdvancedConfig($_POST['id'], $_POST['target']);