123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <?php namespace Laravel;
- class View_Facade extends Facade {
- public static $resolve = 'view';
- }
- /**
- * The view composer class is responsible for calling the composer on a view and
- * searching through the view composers for a given view name. It is injected
- * into the View_Factory and View instances themselves, and is managed as a singleton
- * by the application IoC container.
- */
- class View_Composer {
- /**
- * The application instance.
- *
- * @var Application
- */
- protected $application;
- /**
- * The view composers.
- *
- * @var array
- */
- protected $composers;
- /**
- * Create a new view composer instance.
- *
- * @param array $composers
- * @return void
- */
- public function __construct(Application $application, $composers)
- {
- $this->application = $application;
- $this->composers = $composers;
- }
- /**
- * Find the key for a view by name.
- *
- * @param string $name
- * @return string
- */
- public function name($name)
- {
- foreach ($this->composers as $key => $value)
- {
- if ($name === $value or (isset($value['name']) and $name === $value['name'])) { return $key; }
- }
- }
- /**
- * Call the composer for the view instance.
- *
- * @param View $view
- * @return void
- */
- public function compose(View $view)
- {
- if (isset($this->composers[$view->view]))
- {
- foreach ((array) $this->composers[$view->view] as $key => $value)
- {
- if ($value instanceof \Closure) return call_user_func($value, $this->application, $view);
- }
- }
- }
- }
- /**
- * The view factory class is responsible for the instantiation of Views. It is typically
- * access through the application instance from a route or controller, and is managed
- * as a singleton by the application IoC container.
- */
- class View_Factory {
- /**
- * The view composer instance.
- *
- * @var View_Composer
- */
- protected $composer;
- /**
- * The directory containing the views.
- *
- * @var string
- */
- protected $path;
- /**
- * Create a new view factory instance.
- *
- * @param View_Composer $composer
- * @param string $path
- * @return void
- */
- public function __construct(View_Composer $composer, $path)
- {
- $this->composer = $composer;
- $this->path = $path;
- }
- /**
- * Create a new view instance.
- *
- * @param string $view
- * @param array $data
- * @return View
- */
- public function make($view, $data = array())
- {
- return new View($view, $data, $this->path($view), $this->composer, $this);
- }
- /**
- * Create a new view instance from a view name.
- *
- * @param string $name
- * @param array $data
- * @return View
- */
- protected function of($name, $data = array())
- {
- if ( ! is_null($view = $this->composer->name($name)))
- {
- return new View($view, $data, $this->path($view), $this->composer, $this);
- }
- throw new \Exception("Named view [$name] is not defined.");
- }
- /**
- * Get the path to a given view on disk.
- *
- * @param string $view
- * @return string
- */
- protected function path($view)
- {
- return $this->path.str_replace('.', '/', $view).EXT;
- }
- /**
- * Magic Method for handling the dynamic creation of named views.
- */
- public function __call($method, $parameters)
- {
- if (strpos($method, 'of_') === 0)
- {
- return $this->of(substr($method, 3), Arr::get($parameters, 0, array()));
- }
- }
- }
- /**
- * The view class is returned by the View Factory "make" method, and is the primary
- * class for working with individual views. It provides methods for binding data to
- * views as well as evaluating and rendering their contents.
- */
- class View {
- /**
- * The name of the view.
- *
- * @var string
- */
- public $view;
- /**
- * The view data.
- *
- * @var array
- */
- public $data;
- /**
- * The path to the view on disk.
- *
- * @var string
- */
- protected $path;
- /**
- * The view composer instance.
- *
- * @var View_Composer
- */
- protected $composer;
- /**
- * The view factory instance, which is used to create sub-views.
- *
- * @var View_Factory
- */
- protected $factory;
- /**
- * Create a new view instance.
- *
- * @param string $view
- * @param array $data
- * @param string $path
- * @param View_Composer $composer
- * @param View_Factory $factory
- * @return void
- */
- public function __construct($view, $data, $path, View_Composer $composer, View_Factory $factory)
- {
- $this->view = $view;
- $this->data = $data;
- $this->path = $path;
- $this->factory = $factory;
- $this->composer = $composer;
- if ( ! file_exists($this->path))
- {
- throw new \Exception('View ['.$this->path.'] does not exist.');
- }
- }
- /**
- * Get the evaluated string content of the view.
- *
- * If the view has a composer, it will be executed. All sub-views and responses will
- * also be evaluated and converted to their string values.
- *
- * @return string
- */
- public function render()
- {
- $this->composer->compose($this);
- foreach ($this->data as &$data)
- {
- if ($data instanceof View or $data instanceof Response) $data = $data->render();
- }
- ob_start() and extract($this->data, EXTR_SKIP);
- try { include $this->path; } catch (\Exception $e) { ob_get_clean(); throw $e; }
- return ob_get_clean();
- }
- /**
- * Add a view instance to the view data.
- *
- * @param string $key
- * @param string $view
- * @param array $data
- * @return View
- */
- public function partial($key, $view, $data = array())
- {
- return $this->with($key, $this->factory->make($view, $data));
- }
- /**
- * Add a key / value pair to the view data.
- *
- * Bound data will be available to the view as variables.
- *
- * @param string $key
- * @param mixed $value
- * @return View
- */
- public function with($key, $value)
- {
- $this->data[$key] = $value;
- return $this;
- }
- /**
- * Magic Method for getting items from the view data.
- */
- public function __get($key)
- {
- return $this->data[$key];
- }
- /**
- * Magic Method for setting items in the view data.
- */
- public function __set($key, $value)
- {
- $this->with($key, $value);
- }
- /**
- * Magic Method for determining if an item is in the view data.
- */
- public function __isset($key)
- {
- return array_key_exists($key, $this->data);
- }
- /**
- * Magic Method for removing an item from the view data.
- */
- public function __unset($key)
- {
- unset($this->data[$key]);
- }
- }
|