class ldap_attribute in Lightweight Directory Access Protocol (LDAP) 6
LDAP attribute Class
This class is used to create, work with, and eventually destroy ldap_server objects.
Hierarchy
- class \ldap_attribute
Expanded class hierarchy of ldap_attribute
File
- includes/
ldap.attribute.inc, line 14 - Attribute Class and Manipulation Functions
View source
class ldap_attribute {
// LDAP Settings
private $name;
private $value;
protected $min_value_count;
protected $max_value_count;
protected $entry;
protected $internal;
protected $modified;
protected $visable;
protected $readonly;
/**
* Constructor Method
*/
function __construct() {
}
/**
* Destructor Method
*/
function __destruct() {
}
/**
* Invoke Method
*/
function __invoke() {
}
/**
* Error Handling Method
*
* @param int errno
* The level of the error raised.
*
* @param string errstr
* The error message.
*
* @param string errfile
* The filename that the error was raised in.
*
* @param int errline
* The line number the error was raised at.
*
* @param array errcontext
* An array of every variable that existed in the scope the error was
* triggered in.
*
* @return bool
* Always return TRUE to avoid PHP's builtin handler.
*/
function error_handler($errno, $errstr, $errfile, $errline, $errcontext) {
return TRUE;
}
/**
* Add Method
*/
function add() {
}
/**
* Modify Method
*/
function modify() {
}
/**
* Delete Method
*/
function delete() {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
private | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
private | property | ||
ldap_attribute:: |
protected | property | ||
ldap_attribute:: |
function | Add Method | ||
ldap_attribute:: |
function | Delete Method | ||
ldap_attribute:: |
function | Error Handling Method | ||
ldap_attribute:: |
function | Modify Method | ||
ldap_attribute:: |
function | Constructor Method | ||
ldap_attribute:: |
function | Destructor Method | ||
ldap_attribute:: |
function | Invoke Method |