?
<?php
class NavController extends Zend_Controller_Action
{
function navAction()
{
$this ->_helper->viewRenderer->setResponseSegment('nav');
$session = Zend_Registry::get('session');
$translate = Zend_Registry::get('translate');
$classMainMenu = array();
$this->view->ln = $session->lang;
$actionCourante = $this->view->layout()->actionactif;
$controllerCourant = $this->view->layout()->controlleractif;
$controller_action = $controllerCourant.$actionCourante;
$this->view->actionCourante = $this->view->layout()->actionactif;
$this->view->controllerCourant = $this->view->layout()->controlleractif;
$form = new FormNews("");
$this->view->form = $form;
}
}