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