You are here

public function SimpleLdapSchema::__set in Simple LDAP 7.2

Same name and namespace in other branches
  1. 7 SimpleLdapSchema.class.php \SimpleLdapSchema::__set()

Magic __set function.

Parameters

string $name: The name of the attribute to set.

mixed $value: The value to assigned to the given attribute.

File

./SimpleLdapSchema.class.php, line 74
Class to represent an LDAP server schema.

Class

SimpleLdapSchema
Simple LDAP Schema class.

Code

public function __set($name, $value) {

  // The schema is read-only, just return.
  return;
}