14 lines
249 B
PHP
14 lines
249 B
PHP
|
<?php
|
||
|
class EvaluationController extends Zend_Controller_Action
|
||
|
{
|
||
|
public function init()
|
||
|
{
|
||
|
/* Initialize action controller here */
|
||
|
}
|
||
|
|
||
|
public function indexAction()
|
||
|
{
|
||
|
$this->_forward('entreprise', 'recherche');
|
||
|
}
|
||
|
|
||
|
}
|