Kronolith_Attendee::unserialize PHP Méthode

unserialize() public méthode

public unserialize ( $data )
    public function unserialize($data)
    {
        $data = @unserialize($data);
        $this->user = $data['u'];
        $this->email = $data['e'];
        $this->role = $data['p'];
        $this->response = $data['r'];
        $this->name = $data['n'];
    }