Zend Framework  1.12
Public Member Functions | Protected Attributes | List of all members
Zend_Ldap_Node_Schema_Item Class Reference

Public Member Functions

 __construct (array $data)
 Constructor.
 
 setData (array $data)
 Sets the data.
 
 getData ()
 Gets the data.
 
 __get ($name)
 Gets a specific attribute from this item.
 
 __isset ($name)
 Checks whether a specific attribute exists.
 
 offsetSet ($name, $value)
 Always throws BadMethodCallException Implements ArrayAccess.
 
 offsetGet ($name)
 Gets a specific attribute from this item.
 
 offsetUnset ($name)
 Always throws BadMethodCallException Implements ArrayAccess.
 
 offsetExists ($name)
 Checks whether a specific attribute exists.
 
 count ()
 Returns the number of attributes.
 

Protected Attributes

 $_data
 

Constructor & Destructor Documentation

__construct ( array  $data)

Constructor.

Parameters
array$data

Member Function Documentation

__get (   $name)

Gets a specific attribute from this item.

Parameters
string$name
Returns
mixed
__isset (   $name)

Checks whether a specific attribute exists.

Parameters
string$name
Returns
boolean
count ( )

Returns the number of attributes.

Implements Countable

Returns
int
getData ( )

Gets the data.

Returns
array
offsetExists (   $name)

Checks whether a specific attribute exists.

Parameters
string$name
Returns
boolean
offsetGet (   $name)

Gets a specific attribute from this item.

Parameters
string$name
Returns
mixed
offsetSet (   $name,
  $value 
)

Always throws BadMethodCallException Implements ArrayAccess.

This method is needed for a full implementation of ArrayAccess

Parameters
string$name
mixed$value
Returns
null
Exceptions
BadMethodCallException
offsetUnset (   $name)

Always throws BadMethodCallException Implements ArrayAccess.

This method is needed for a full implementation of ArrayAccess

Parameters
string$name
Returns
null
Exceptions
BadMethodCallException
setData ( array  $data)

Sets the data.

Parameters
array$data
Returns
Zend_Ldap_Node_Schema_Item Provides a fluid interface

Member Data Documentation

$_data
protected