function run()
 {
     $arb = new AreaRepositoryBuilder($this->siteContainer);
     foreach ($arb->fetchAll() as $area) {
         $this->siteContainer['arearepository']->buildCacheAreaHasParent($area);
     }
 }
 public function write()
 {
     $crbAll = new CountryRepositoryBuilder($this->siteContainer);
     $crbEvents = new CountryRepositoryBuilder($this->siteContainer);
     $crbEvents->setHasEventsOnly(true);
     $this->outFolder->addFileContents('country', 'index.html', $this->twigHelper->getTwig()->render('countrylist/index.html.twig', array_merge($this->baseViewParameters, array('countries' => $crbEvents->fetchAll()))));
     foreach ($crbAll->fetchAll() as $country) {
         $erb = new EventRepositoryBuilder($this->siteContainer);
         $erb->setCountry($country);
         $erb->setAfterNow();
         $arb = new AreaRepositoryBuilder($this->siteContainer);
         $arb->setCountry($country);
         $arb->setNoParentArea(true);
         $this->outFolder->addFileContents('country' . DIRECTORY_SEPARATOR . strtoupper($country->getTwoCharCode()), 'index.html', $this->twigHelper->getTwig()->render('country/index.html.twig', array_merge($this->baseViewParameters, array('country' => $country, 'events' => $erb->fetchAll(), 'areas' => $arb->fetchAll()))));
     }
 }