How do I delete all session variables at once if they are not in Array?
PS I set them this way:
$this->getUser()->setAttribute(\'PayPalTransaction.
Another way if you want to remove just one session variable not all of them is to use the following code
$this->getUser()->getAttributeHolder()->remove('att_name');
Again this will only remove one not all ... to clear all use the previous code by Grad