Commit d9201be4 authored by Taylor Otwell's avatar Taylor Otwell

refactoring view compilation.

parent 516f310e
...@@ -80,7 +80,7 @@ return array( ...@@ -80,7 +80,7 @@ return array(
{ {
require_once SYS_PATH.'view'.EXT; require_once SYS_PATH.'view'.EXT;
return new View_Factory($c->resolve('laravel.composer'), VIEW_PATH); return new View_Factory($c->resolve('laravel.composer'), VIEW_PATH, STORAGE_PATH.'views/');
}), }),
......
...@@ -9,6 +9,13 @@ class View_Factory { ...@@ -9,6 +9,13 @@ class View_Factory {
*/ */
public $path; public $path;
/**
* The path to the application storage directory.
*
* @var string
*/
public $compiled;
/** /**
* The view composer instance. * The view composer instance.
* *
...@@ -21,12 +28,14 @@ class View_Factory { ...@@ -21,12 +28,14 @@ class View_Factory {
* *
* @param View_Composer $composer * @param View_Composer $composer
* @param string $path * @param string $path
* @param string $compiled
* @return void * @return void
*/ */
public function __construct(View_Composer $composer, $path) public function __construct(View_Composer $composer, $path, $compiled)
{ {
$this->path = $path; $this->path = $path;
$this->composer = $composer; $this->composer = $composer;
$this->compiled = $compiled;
} }
/** /**
...@@ -279,7 +288,7 @@ class View { ...@@ -279,7 +288,7 @@ class View {
// For simplicity, compiled views are stored in a single directory by the MD5 hash of // For simplicity, compiled views are stored in a single directory by the MD5 hash of
// their name. This allows us to avoid recreating the entire view directory structure // their name. This allows us to avoid recreating the entire view directory structure
// within the compiled views directory. // within the compiled views directory.
$compiled = $this->factory->path.'compiled/'.md5($this->view); $compiled = $this->factory->compiled.md5($this->view);
// The view will only be re-compiled if the view has been modified since the last compiled // The view will only be re-compiled if the view has been modified since the last compiled
// version of the view was created or no compiled view exists. Otherwise, the path will // version of the view was created or no compiled view exists. Otherwise, the path will
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment