extranet/application/controllers/IndexController.php
2011-02-21 08:45:13 +00:00

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');
}
}