Group::showLDAPForm PHP Method

showLDAPForm() public method

public showLDAPForm ( $ID )
$ID
    function showLDAPForm($ID)
    {
        $options = array();
        $this->initForm($ID, $options);
        echo "<form name='groupldap_form' id='groupldap_form' method='post' action='" . $this->getFormURL() . "'>";
        echo "<div class='spaced'><table class='tab_cadre_fixe'>";
        if (Group::canUpdate() && Session::haveRight("user", User::UPDATEAUTHENT) && AuthLdap::useAuthLdap()) {
            echo "<tr class='tab_bg_1'>";
            echo "<th colspan='2' class='center'>" . __('In users') . "</th></tr>";
            echo "<tr class='tab_bg_1'>";
            echo "<td>" . __('Attribute of the user containing its groups') . "</td>";
            echo "<td>";
            Html::autocompletionTextField($this, "ldap_field");
            echo "</td></tr>";
            echo "<tr class='tab_bg_1'>";
            echo "<td>" . __('Attribute value') . "</td>";
            echo "<td>";
            Html::autocompletionTextField($this, "ldap_value");
            echo "</td></tr>";
            echo "<tr class='tab_bg_1'>";
            echo "<th colspan='2' class='center'>" . __('In groups') . "</th>";
            echo "</tr>";
            echo "<tr class='tab_bg_1'>";
            echo "<td>" . __('Group DN') . "</td>";
            echo "<td>";
            Html::autocompletionTextField($this, "ldap_group_dn");
            echo "</td></tr>";
        }
        $options = array('colspan' => 1, 'candel' => false);
        $this->showFormButtons($options);
    }