Gumdrop\Application::getDestinationLocation PHP Method

getDestinationLocation() public method

    public function getDestinationLocation()
    {
        return $this->destinationLocation;
    }

Usage Example

コード例 #1
0
ファイル: Engine.php プロジェクト: simonjodet/gumdrop
 public function writeHtmlFiles()
 {
     $this->app->getFileHandler()->clearDestinationLocation();
     foreach ($this->PageCollection as $key => $Page) {
         $this->PageCollection[$key]->writeHtmlFile($this->app->getDestinationLocation());
     }
     $this->app->setPageCollection($this->PageCollection);
 }