/**
  * Shows a form for creating a new news object
  *
  * @return void
  */
 public function newAction()
 {
     $this->view->assign('folders', $this->folderService->listAll());
     $this->view->assign('relatedNews', $this->newsService->getEnabledNews());
     $this->view->assign('newsCategories', $this->categoryService->getEnabledLatestCategories());
     $this->view->assign('tags', $this->tagService->listAll());
 }