extranet/application/controllers/IndexController.php

16 lines
246 B
PHP
Raw Normal View History

2010-11-22 12:50:12 +00:00
<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$this->_forward('entreprise', 'recherche');
2010-11-22 12:50:12 +00:00
}
2011-01-07 17:16:07 +00:00
2010-11-22 12:50:12 +00:00
}