Author: Victor Farazdagi
Inheritance: extends Base
示例#1
0
文件: Js.php 项目: farazdagi/phrozn
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     if (!$this->outputFile) {
         $path = new OutputFile($this);
         $this->setOutputFile($path->get());
     }
     return $this->outputFile;
 }
示例#2
0
 public function testScriptsPaths()
 {
     $view = new View\Less();
     $view->setInputFile('/var/www/phrozn-test/scripts/some-entry.js')->setOutputDir('/var/www/output');
     $path = new OutputPath\Script($view);
     $this->assertSame('/var/www/output/scripts/some-entry.js', $path->get());
     $view->setInputFile('/var/www/phrozn-test/scripts/sub/folder/some-entry.js')->setOutputDir('/var/www/output');
     $path->setView($view);
     $this->assertSame('/var/www/output/scripts/sub/folder/some-entry.js', $path->get());
     $view->setInputFile('/var/www/phrozn-test/sub/folder/some-entry.js')->setOutputDir('/var/www/output');
     $path->setView($view);
     $this->assertSame('/var/www/output/scripts/some-entry.js', $path->get());
 }
示例#3
0
 /**
  * Get output file path
  *
  * @return string
  */
 public function getOutputFile()
 {
     $path = new OutputFile($this);
     return $path->get();
 }