66 return $this->
object->$name;
78 $this->
object->$name =
$value;
90 return call_user_func_array(array($this->
object,
$name), $arguments);
100 if (isset($this->
string)) {
117 call_user_func($this->reporter, $this->
message, $this->
version, 3);
132 if (is_object($this->
object) && !$this->
object instanceof ArrayAccess) {
133 $this->
object->$key =
$value;
155 if (is_object($this->
object) && !$this->
object instanceof ArrayAccess) {
156 return $this->
object->$key;
158 return $this->
object[
$key];
173 if (is_object($this->
object) && !$this->
object instanceof ArrayAccess) {
174 unset($this->object->$key);
176 unset($this->
object[
$key]);
191 if (is_object($this->
object) && !$this->
object instanceof ArrayAccess) {
192 return isset($this->object->$offset);
194 return array_key_exists(
$offset, $this->
object);
__construct($object, $message, $version, $reporter= 'elgg_deprecated_notice')
Create the wrapper.
offsetExists($offset)
Array access interface.
__set($name, $value)
Set a property on the object.
if($guid==elgg_get_logged_in_user_guid()) $name
__toString()
Get the object as string.
displayWarning()
Display a warning.
__call($name, $arguments)
Call a method on the object.
offsetGet($key)
Array access interface.
offsetUnset($key)
Array access interface.
__get($name)
Get a property on the object.
offsetSet($key, $value)
Array access interface.