Exemplo n.º 1
0
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     if (!$this->outputFile) {
         $path = new OutputFile($this);
         $this->setOutputFile($path->get());
     }
     return $this->outputFile;
 }
Exemplo n.º 2
0
 public function testStylesPaths()
 {
     $view = new View\Less();
     $view->setInputRootDir('/var/www/phrekyll-test/');
     $view->setInputFile('/var/www/phrekyll-test/styles/some-entry.less')->setOutputDir('/var/www/output');
     $path = new OutputPath\Style($view);
     $this->assertSame('/var/www/output/styles/some-entry.css', $path->get());
     $view->setInputFile('/var/www/phrekyll-test/styles/sub/folder/some-entry.less')->setOutputDir('/var/www/output');
     $path->setView($view);
     $this->assertSame('/var/www/output/styles/sub/folder/some-entry.css', $path->get());
     $view->setInputFile('/var/www/phrekyll-test/sub/folder/some-entry.less')->setOutputDir('/var/www/output');
     $path->setView($view);
     $this->assertSame('/var/www/output/sub/folder/some-entry.css', $path->get());
 }
Exemplo n.º 3
0
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     $path = new OutputFile($this);
     return $path->get();
 }