![]() |
Antidot PHP API
version 0.16.0
##PHP API to simplify integration of Antidot components
|
Wrapper to access right underlying object when building filter expression. More...
Public Member Functions | |
__construct ($parent, $obj) | |
Constructs new wrapped object. | |
__get ($name) | |
Wraps all getter methods and properties calls. | |
__set ($name, $params) | |
Wraps all setter methods and properties calls. | |
__call ($name, $params) | |
Wraps all methods calls. | |
to_string ($serialize_wrapped_object=false) | |
Retrieves string representation. |
Wrapper to access right underlying object when building filter expression.
__construct | ( | $parent, | |
$obj | |||
) |
Constructs new wrapped object.
$parent | [in] Parent of the wrapper. |
$obj | [in] The wrapped object. |
__call | ( | $name, | |
$params | |||
) |
Wraps all methods calls.
Only first method parameter is forwarded to corresponding method of the wrapped object.
$name | [in] Name of the method. |
$params | [in] Array of parameters (only the first one is used!). |
AfsFilterException | when invalid method has been requested. |
__get | ( | $name | ) |
Wraps all getter methods and properties calls.
$name | [in] Name of the getter/property. |
AfsFilterException | when invalid getter/property has been requested |
__set | ( | $name, | |
$params | |||
) |
Wraps all setter methods and properties calls.
$name | [in] Name of the setter/property. |
$params | [in] Parameter forwarded to the setter/property/ |
AfsFilterException | when invalid setter/property has been requested |
to_string | ( | $serialize_wrapped_object = false | ) |
Retrieves string representation.
$serialize_wrapped_object | [in] When set to true , output corresponds to the string representation of the wrapped object. Otherwise, false (default), output corresponds to the string representation of the parent element. |