PHP Class LdapTools\Operation\DeleteOperation

Author: Chad Sikorra ([email protected])
Inheritance: implements LdapTools\Operation\LdapOperationInterface, use trait LdapOperationTrait
Show file Open project: ldaptools/ldaptools Class Usage Examples

Protected Properties

Property Type Description
$dn The DN to remove.

Public Methods

Method Description
__construct ( string $dn )
getArguments ( )
getDn ( ) : null | string Get the distinguished name to be deleted by this operation.
getLdapFunction ( )
getLogArray ( )
getName ( )
setDn ( string $dn ) Set the distinguished name to be deleted by this operation.

Method Details

__construct() public method

public __construct ( string $dn )
$dn string The DN of the LDAP object to delete.

getArguments() public method

public getArguments ( )

getDn() public method

Get the distinguished name to be deleted by this operation.
public getDn ( ) : null | string
return null | string

getLdapFunction() public method

public getLdapFunction ( )

getLogArray() public method

public getLogArray ( )

getName() public method

public getName ( )

setDn() public method

Set the distinguished name to be deleted by this operation.
public setDn ( string $dn )
$dn string

Property Details

$dn protected property

The DN to remove.
protected $dn