ElggEntity::getVolatileData PHP Method

getVolatileData() public method

Get a piece of volatile (non-persisted) data on this entity.
public getVolatileData ( string $name ) : mixed
$name string The name of the volatile data
return mixed The value or null if not found.
    public function getVolatileData($name)
    {
        return array_key_exists($name, $this->volatile) ? $this->volatile[$name] : null;
    }