setTitle($this->translate('Business Process Overview')); if (! $this->view->compact) { $this->controls()->add($this->overviewTab()); } if ($this->view->showFullscreen) { $this->content()->add(DashboardFullscreen::create($this->storage())); $this->setAutorefreshInterval(120); $this->controls()->getAttributes()->add('class', 'want-fullscreen'); } else { $this->content()->add(Dashboard::create($this->Auth(), $this->storage())); $this->setAutorefreshInterval(15); } } }