Entry::isAuditSuccess()

bool isAuditSuccess() Whether auditing for successful denies is turned on Return Value bool

Entry::getSecurityIdentity()

SecurityIdentityInterface getSecurityIdentity() The security identity associated with this ACE Return Value SecurityIdentityInterface

Entry::getDn()

string getDn() Returns the entry's DN. Return Value string

Entry::getAttribute()

null|array getAttribute($name) Returns a specific attribute's value. As LDAP can return multiple values for a single attribute, this value is returned as an array. Parameters $name string The name of the attribute Return Value null|array

Entry::getMask()

int getMask() The permission mask of this ACE Return Value int

Entry::getStrategy()

string getStrategy() The strategy for comparing masks Return Value string

Entry::getAttributes()

array getAttributes() Returns the complete list of attributes. Return Value array

Entry::getId()

int getId() The primary key of this ACE Return Value int

Entry

class Entry implements AuditableEntryInterface Auditable ACE implementation Methods __construct(int $id, AclInterface $acl, SecurityIdentityInterface $sid, string $strategy, int $mask, bool $granting, bool $auditFailure, bool $auditSuccess) Constructor AclInterface getAcl() The ACL this ACE is associated with. int getMask() The permission mask of this ACE int getId() The primary key of this ACE SecurityIdentityInterface getSecurityIdentity() The security identity asso

Entry

class Entry Methods __construct($dn, array $attributes = array()) string getDn() Returns the entry's DN. bool hasAttribute($name) Returns whether an attribute exists. null|array getAttribute($name) Returns a specific attribute's value. array getAttributes() Returns the complete list of attributes. setAttribute(string $name, array $value) Sets a value for the given attribute. removeAttribute(string $name) Removes a given attribute. Details