PHP 클래스 LdapTools\Operation\AddOperation

저자: Chad Sikorra ([email protected])
상속: implements LdapTools\Operation\LdapOperationInterface, use trait LdapOperationTrait
파일 보기 프로젝트 열기: ldaptools/ldaptools 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$properties array

공개 메소드들

메소드 설명
__construct ( string $dn = null, array $attributes = [] )
getArguments ( )
getAttributes ( ) : array | null Get either: The attributes selected for a query operation. The attributes to be set for an add operation.
getDn ( ) : null | string The distinguished name for an add, delete, or move operation.
getLdapFunction ( )
getLocation ( ) : string | null Get the location where the LDAP object should be created (ie. OU/container). This is only valid when the operation is hydrated.
getLogArray ( )
getName ( )
setAttributes ( array $attributes ) Set the attributes selected or added to/from LDAP (add or select operation).
setDn ( string $dn ) Set the distinguished name that the operation is working on.
setLocation ( string $location ) Set the location where the LDAP object should be created (ie. OU/container). This is only valid when the operation is hydrated.

메소드 상세

__construct() 공개 메소드

public __construct ( string $dn = null, array $attributes = [] )
$dn string The DN for the LDAP object.
$attributes array The attributes in [key => value] form for the LDAP object.

getArguments() 공개 메소드

public getArguments ( )

getAttributes() 공개 메소드

Get either: The attributes selected for a query operation. The attributes to be set for an add operation.
public getAttributes ( ) : array | null
리턴 array | null

getDn() 공개 메소드

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

getLdapFunction() 공개 메소드

public getLdapFunction ( )

getLocation() 공개 메소드

Get the location where the LDAP object should be created (ie. OU/container). This is only valid when the operation is hydrated.
public getLocation ( ) : string | null
리턴 string | null

getLogArray() 공개 메소드

public getLogArray ( )

getName() 공개 메소드

public getName ( )

setAttributes() 공개 메소드

Set the attributes selected or added to/from LDAP (add or select operation).
public setAttributes ( array $attributes )
$attributes array

setDn() 공개 메소드

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

setLocation() 공개 메소드

Set the location where the LDAP object should be created (ie. OU/container). This is only valid when the operation is hydrated.
public setLocation ( string $location )
$location string

프로퍼티 상세

$properties 보호되어 있는 프로퍼티

protected array $properties
리턴 array