Beispiel #1
0
function cacti_ldap_mod_dn($modify, $username, $attrib, $dn = "", $host = "", $port = "", $port_ssl = "", $version = "", $encryption = "", $referrals = "", $group_dn = "", $group_attrib = "", $group_member_type = "", $search_base = "", $search_filter = "", $specific_dn = "", $specific_password = "")
{
    $ldap = new Ldap();
    if (!empty($modify)) {
        $ldap->modify = $modify;
    }
    if (!empty($username)) {
        $ldap->username = $username;
    }
    if (!empty($attrib)) {
        $ldap->attrib = $attrib;
    }
    if (!empty($dn)) {
        $ldap->dn = $dn;
    }
    if (!empty($host)) {
        $ldap->host = $host;
    }
    if (!empty($port)) {
        $ldap->port = $port;
    }
    if (!empty($port_ssl)) {
        $ldap->port_ssl = $port_ssl;
    }
    if (!empty($version)) {
        $ldap->version = $version;
    }
    if (!empty($encryption)) {
        $ldap->encryption = $encryption;
    }
    if (!empty($referrals)) {
        $ldap->referrals = $referrals;
    }
    if (!empty($group_dn)) {
        $ldap->group_dn = $group_dn;
    }
    if (!empty($group_attrib)) {
        $ldap->group_attrib = $group_attrib;
    }
    if (!empty($group_member_type)) {
        $ldap->group_member_type = $group_member_type;
    }
    if (!empty($search_base)) {
        $ldap->search_base = $search_base;
    }
    if (!empty($search_filter)) {
        $ldap->search_filter = $search_filter;
    }
    if (!empty($specific_dn)) {
        $ldap->specific_dn = $specific_dn;
    }
    if (!empty($specific_password)) {
        $ldap->specific_password = $specific_password;
    }
    return $ldap->Modify();
}