PHP Class LdapTools\Operation\BatchModifyOperation

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
$properties array

Public Methods

Method Description
__clone ( ) Make sure to clone a BatchCollection instance.
__construct ( string $dn, BatchCollection $batch = null )
getArguments ( )
getBatchCollection ( ) : BatchCollection | null The batch modifications array for a modify operation.
getDn ( ) : null | string The distinguished name for an add, delete, or move operation.
getLdapFunction ( )
getLogArray ( )
getName ( )
setBatchCollection ( BatchCollection $batch ) Set the batch modifications array for the operation.
setDn ( string $dn ) Set the distinguished name that the operation is working on.

Protected Methods

Method Description
getBatchArray ( ) : array

Method Details

__clone() public method

Make sure to clone a BatchCollection instance.
public __clone ( )

__construct() public method

public __construct ( string $dn, BatchCollection $batch = null )
$dn string The DN of the LDAP object to be modified.
$batch LdapTools\BatchModify\BatchCollection A BatchCollection object.

getArguments() public method

public getArguments ( )

getBatchArray() protected method

protected getBatchArray ( ) : array
return array

getBatchCollection() public method

The batch modifications array for a modify operation.
public getBatchCollection ( ) : BatchCollection | null
return LdapTools\BatchModify\BatchCollection | null

getDn() public method

The distinguished name for an add, delete, or move operation.
public getDn ( ) : null | string
return null | string

getLdapFunction() public method

public getLdapFunction ( )

getLogArray() public method

public getLogArray ( )

getName() public method

public getName ( )

setBatchCollection() public method

Set the batch modifications array for the operation.
public setBatchCollection ( BatchCollection $batch )
$batch LdapTools\BatchModify\BatchCollection

setDn() public method

Set the distinguished name that the operation is working on.
public setDn ( string $dn )
$dn string

Property Details

$properties protected property

protected array $properties
return array