phpldapadmin/delete_attr.php

52 lines
1.4 KiB
PHP
Raw Normal View History

2009-06-30 09:22:30 +00:00
<?php
2009-06-30 09:24:29 +00:00
// $Header: /cvsroot/phpldapadmin/phpldapadmin/delete_attr.php,v 1.11 2005/03/05 06:27:06 wurley Exp $
2009-06-30 09:22:30 +00:00
2009-06-30 09:24:29 +00:00
/**
2009-06-30 08:07:14 +00:00
* Deletes an attribute from an entry with NO confirmation.
*
* On success, redirect to edit.php
* On failure, echo an error.
2009-06-30 09:24:29 +00:00
*
* @package phpLDAPadmin
*/
/**
2009-06-30 08:07:14 +00:00
*/
2009-06-30 09:22:30 +00:00
require './common.php';
2009-06-30 08:07:14 +00:00
2009-06-30 09:24:29 +00:00
$server_id = (isset($_POST['server_id']) ? $_POST['server_id'] : '');
$ldapserver = new LDAPServer($server_id);
if( $ldapserver->isReadOnly() )
pla_error( $lang['no_updates_in_read_only_mode'] );
if( ! $ldapserver->haveAuthInfo())
pla_error( $lang['not_enough_login_info'] );
2009-06-30 08:09:20 +00:00
$dn = $_POST['dn'] ;
2009-06-30 08:07:14 +00:00
$attr = $_POST['attr'];
2009-06-30 09:24:29 +00:00
$encoded_dn = rawurlencode( $dn );
if( is_attr_read_only( $ldapserver, $attr ) )
2009-06-30 09:22:30 +00:00
pla_error( sprintf( $lang['attr_is_read_only'], htmlspecialchars( $attr ) ) );
2009-06-30 09:24:29 +00:00
2009-06-30 09:22:30 +00:00
if( ! $attr ) pla_error( $lang['no_attr_specified'] );
if( ! $dn ) pla_error( $lang['no_dn_specified'] );
2009-06-30 08:07:14 +00:00
$update_array = array();
$update_array[$attr] = array();
2009-06-30 09:24:29 +00:00
$res = @ldap_modify( $ldapserver->connect(), $dn, $update_array );
if( $res ) {
2009-06-30 08:07:14 +00:00
$redirect_url = "edit.php?server_id=$server_id&dn=$encoded_dn";
2009-06-30 09:24:29 +00:00
2009-06-30 08:07:14 +00:00
foreach( $update_array as $attr => $junk )
$redirect_url .= "&modified_attrs[]=$attr";
2009-06-30 09:24:29 +00:00
2009-06-30 08:07:14 +00:00
header( "Location: $redirect_url" );
2009-06-30 09:24:29 +00:00
} else {
pla_error( $lang['could_not_perform_ldap_modify'], ldap_error( $ldapserver->connect() ), ldap_errno( $ldapserver->connect() ) );
}
2009-06-30 08:07:14 +00:00
?>