You are here

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

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

Namesort descending Modifiers Type Description Overrides
ldap_attribute::$entry protected property
ldap_attribute::$internal protected property
ldap_attribute::$max_value_count protected property
ldap_attribute::$min_value_count protected property
ldap_attribute::$modified protected property
ldap_attribute::$name private property
ldap_attribute::$readonly protected property
ldap_attribute::$value private property
ldap_attribute::$visable protected property
ldap_attribute::add function Add Method
ldap_attribute::delete function Delete Method
ldap_attribute::error_handler function Error Handling Method
ldap_attribute::modify function Modify Method
ldap_attribute::__construct function Constructor Method
ldap_attribute::__destruct function Destructor Method
ldap_attribute::__invoke function Invoke Method