odea/application/controllers/EntrepriseController.php
2012-05-14 08:02:57 +00:00

22 lines
497 B
PHP

<?php
class EntrepriseController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$field = new Scores_Fields();
$this->view->fields = $field;
}
public function resetAction()
{
$this->_helper->layout()->disableLayout();
$this->_helper->viewRenderer->setNoRender();
$fields = new Scores_Fields();
$fields->resetFamille('entreprise');
}
}