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