odea/application/controllers/AideController.php

20 lines
384 B
PHP
Raw Normal View History

2012-03-07 11:18:08 +00:00
<?php
class AideController extends Zend_Controller_Action
{
2012-05-25 13:24:30 +00:00
public function init()
{
$this->view->headLink()->appendStylesheet('/themes/default/styles/aide.css');
}
2012-03-07 11:18:08 +00:00
public function indexAction(){}
2012-05-25 13:24:30 +00:00
2012-03-07 11:18:08 +00:00
public function aproposdeAction(){}
2012-05-25 13:24:30 +00:00
public function messageAction()
{
$request = $this->getRequest();
$this->view->assign('typeMsg', $request->getParam('typeMsg'));
}
2012-03-07 11:18:08 +00:00
}