/**
  * @param \Nette\Database\Table\Selection $selection
  * @return \Nette\Database\Table\Selection
  */
 private function filterSections(Selection $selection)
 {
     if ($this->withoutHome) {
         $this->moduleFilter->filterNotModule($selection, ModuleConst::FRONT);
     }
     return $selection;
 }
 /**
  * @return array
  */
 public function getOptionsWithoutHome()
 {
     $context = $this->moduleFilter->filterNotModule($this->sectionFacade->all(), ModuleConst::FRONT);
     return $this->orderAndFetch($context);
 }