22 lines
497 B
PHP
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');
|
|
}
|
|
} |