You are here

protected function Bakery::unserialize in Bakery Single Sign-On System 7.3

Unserialize into an object or array.

Parameters

string $data Serialized data.:

Return value

array Unserialized data.

1 call to Bakery::unserialize()
Bakery::validateData in ./bakery.inc
Validate and decrypt baked data.

File

./bakery.inc, line 339

Class

Bakery

Code

protected function unserialize($data) {

  // @todo figure out how to get JSON encoding to work, it current decodes
  // as NULL
  return unserialize($data);
}