Fix tabs of new/update/remove dashlet

This commit is contained in:
Eric Lippmann 2016-01-25 07:17:16 +01:00
parent 7ede8124cb
commit 7aac92a86f
1 changed files with 15 additions and 3 deletions

View File

@ -37,7 +37,11 @@ class DashboardController extends ActionController
public function newDashletAction()
{
$form = new DashletForm();
$this->createTabs();
$this->getTabs()->add('new-dashlet', array(
'active' => true,
'label' => $this->translate('New Dashlet'),
'url' => Url::fromRequest()
));
$dashboard = $this->dashboard;
$form->setDashboard($dashboard);
if ($this->_request->getParam('url')) {
@ -77,7 +81,11 @@ class DashboardController extends ActionController
public function updateDashletAction()
{
$this->createTabs();
$this->getTabs()->add('update-dashlet', array(
'active' => true,
'label' => $this->translate('Update Dashlet'),
'url' => Url::fromRequest()
));
$dashboard = $this->dashboard;
$form = new DashletForm();
$form->setDashboard($dashboard);
@ -145,7 +153,11 @@ class DashboardController extends ActionController
public function removeDashletAction()
{
$form = new ConfirmRemovalForm();
$this->createTabs();
$this->getTabs()->add('remove-dashlet', array(
'active' => true,
'label' => $this->translate('Remove Dashlet'),
'url' => Url::fromRequest()
));
$dashboard = $this->dashboard;
if (! $this->_request->getParam('pane')) {
throw new Zend_Controller_Action_Exception(