ZF-2608: Add method to retrieve the complete session content

Description

Add method to retrieve the complete session content so you dont have to access $_SESSION directly.

Comments

Updating project management info.

Are you talking about retrieveing everything inside $_SESSION regardless of the __ZF settings? or just everything from the session? If you are talking about getting everything from the sesison, why not use $_SESSION?

I meant the contents of the session without the __ZF part of the array.

This is done easily enough without changes to ZF:


$sessionData = $_SESSION; 
unset($sessionData['__ZF']);