added paths and extensions options to view class.

Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
This commit is contained in:
Taylor Otwell 2012-02-27 15:29:11 -06:00
parent ca5dfa4061
commit 64b61abcd5
1 changed files with 27 additions and 8 deletions

View File

@ -37,6 +37,20 @@ class View implements ArrayAccess {
*/ */
public static $names = array(); public static $names = array();
/**
* The extensions a view file can have.
*
* @var array
*/
public static $extensions = array(EXT);
/**
* The path in which a view can live.
*
* @var array
*/
public static $paths = array(DEFAULT_BUNDLE => array(''));
/** /**
* The Laravel view engine event name. * The Laravel view engine event name.
* *
@ -99,11 +113,16 @@ protected function path($view)
// We need to make sure that the view exists. If it doesn't, we will // We need to make sure that the view exists. If it doesn't, we will
// throw an exception since there is not any point in going further. // throw an exception since there is not any point in going further.
// If it does, we can just return the full view path. // If it does, we can just return the full view path.
$path = $root.Bundle::element($view).EXT; $paths = array_get(static::$paths, Bundle::name($view), array(''));
if (file_exists($path)) foreach ($paths as $path)
{ {
return $path; foreach (static::$extensions as $ext)
{
$file = $root.$path.Bundle::element($view).$ext;
if (file_exists($file)) return $file;
}
} }
throw new \Exception("View [$view] doesn't exist."); throw new \Exception("View [$view] doesn't exist.");
@ -211,13 +230,13 @@ public function render()
// allows easy attachment of other view parsers. // allows easy attachment of other view parsers.
if (Event::listeners(static::engine)) if (Event::listeners(static::engine))
{ {
return Event::first(static::engine, array($this)); $result = Event::first(static::engine, array($this));
if ($result !== false) return $result;
} }
else
{
return $this->get(); return $this->get();
} }
}
/** /**
* Get the evaluated contents of the view. * Get the evaluated contents of the view.