Temporarily remove 'plus' link from dashboard

This commit is contained in:
Thomas Gelf 2014-03-08 21:39:12 +01:00
parent e6fc6375b5
commit d729d9381d

View File

@ -126,6 +126,7 @@ class DashboardController extends ActionController
} }
$this->view->title = $dashboard->getActivePane()->getTitle() . ' :: Dashboard'; $this->view->title = $dashboard->getActivePane()->getTitle() . ' :: Dashboard';
$this->view->tabs = $dashboard->getTabs(); $this->view->tabs = $dashboard->getTabs();
/* Temporarily removed
$this->view->tabs->add( $this->view->tabs->add(
'Add', 'Add',
array( array(
@ -133,6 +134,7 @@ class DashboardController extends ActionController
'url' => Url::fromPath('dashboard/addurl') 'url' => Url::fromPath('dashboard/addurl')
) )
); );
*/
$this->view->dashboard = $dashboard; $this->view->dashboard = $dashboard;
} }
} }