Skip to content
Snippets Groups Projects
Commit 1367ad10 authored by efalcy's avatar efalcy
Browse files

dev #36620 improve formation widget : fix tests

parent 859ee284
Branches
Tags 6.51.0
6 merge requests!1553Master,!1519Master,!1506Master,!1502Master,!1451Dev#36620 improve formation widget,!1437Dev#36620 improve formation widget
......@@ -29,7 +29,7 @@ class FormationsController extends ZendAfi_Controller_Action {
public function indexAction() {
$this->sessions_inscrit = [];
$this->view->formations_by_year = Class_Formation::indexByYear(Class_Formation::getLoader()->findAll());
$this->view->formations_by_year = Class_Formation::indexByYear(Class_Formation::findAll());
$this->view->user = $this->_user;
}
......@@ -42,7 +42,7 @@ class FormationsController extends ZendAfi_Controller_Action {
$this->view->url_retour = ($this->_getParam('retour'))
? $this->_getParam('retour')
: $this->view->url(['controller' => 'formations',
: $this->view->url(['controller' => 'formations',
'action' => 'index'],
null, true);
$this->view->session = $session;
......
......@@ -27,7 +27,7 @@ class ZendAfi_View_Helper_RenderFormation extends ZendAfi_View_Helper_BaseHelper
return $strategy
? (new Render_Strategy_Widget($this->view))->render($formation, $strategy)
: (new Render_Strategy($this->view))->render($formation);
: (new Render_Strategy($this->view))->render($formation,$strategy);
}
}
......@@ -46,7 +46,7 @@ class Render_Strategy {
$formation->getLibelle());
$html.= $this->view->tag('div',
$formation->getDescription());
$html.= $this->view->renderSessions($formation->getAvailableSessions(), 'Table');
$html.= $this->view->renderSessions($formation->getSessions(), 'Table');
return $this->view->tag('div',
$html);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment