In my zend project I have this code in header.phtml which is loaded into every layout / view. It's the start of a function which sets a div based on the users session. I need to add a redirect based on these variables. So that any page (controller) the user tries to access they'll be redirected to the billing controller index action. I know I can set the redirect in each controllers index action but that is a lot of code. Is there anyway I cand add the redirect into my header.phtml?
Thanks
<?php
$userSess= new Zend_Session_Namespace('Default');
if(isset($userSess->subscription_state) && isset($userSess->account_type)){
if($userSess->subscription_state == "unpaid" && $userSess->account_type == 1){
?>