Ajout controller Evaluation et Pieces

This commit is contained in:
Michael RICOIS 2011-04-19 07:37:39 +00:00
parent f5d2faa3e1
commit 11455f790f
3 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,14 @@
<?php
class EvaluationController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$this->_forward('entreprise', 'recherche');
}
}

View File

@ -33,7 +33,10 @@ class IdentiteController extends Zend_Controller_Action
$this->view->assign('infos', $infos);
}
public function fichepcAction(){}
public function fichepcAction()
{
//Méthode non disponible sur webservice
}
public function etablissementsAction()
{

View File

@ -0,0 +1,16 @@
<?php
class PiecesController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
}
}