/**
  * Set up the doc header properly here
  *
  * @param ViewInterface $view
  */
 protected function initializeView(ViewInterface $view)
 {
     if ($view instanceof BackendTemplateView) {
         /** @var BackendTemplateView $view */
         parent::initializeView($view);
         $view->getModuleTemplate()->getDocHeaderComponent()->disable();
         $this->view->getModuleTemplate()->setFlashMessageQueue($this->controllerContext->getFlashMessageQueue());
     }
 }
Beispiel #2
0
 /**
  * Set up the doc header properly here
  *
  * @param ViewInterface $view
  */
 protected function initializeView(ViewInterface $view)
 {
     parent::initializeView($view);
     $this->registerButtons();
     $this->view->getModuleTemplate()->setFlashMessageQueue($this->controllerContext->getFlashMessageQueue());
 }
Beispiel #3
0
 /**
  * Set up the doc header properly here
  *
  * @param BackendTemplateView $view
  */
 protected function initializeView(BackendTemplateView $view)
 {
     parent::initializeView($view);
     $view->getModuleTemplate()->getDocHeaderComponent()->disable();
 }
 /**
  * Set up the doc header properly here
  *
  * @param BackendTemplateView $view
  */
 protected function initializeView(BackendTemplateView $view)
 {
     parent::initializeView($view);
     $view->getModuleTemplate()->getDocHeaderComponent()->disable();
     $this->view->getModuleTemplate()->setFlashMessageQueue($this->controllerContext->getFlashMessageQueue());
 }
Beispiel #5
0
 /**
  * Set up the doc header properly here
  *
  * @param BackendTemplateView $view
  */
 protected function initializeView(BackendTemplateView $view)
 {
     parent::initializeView($view);
     $this->registerButtons();
 }