view.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. <?php namespace Laravel;
  2. class View_Facade extends Facade {
  3. public static $resolve = 'view';
  4. }
  5. /**
  6. * The view composer class is responsible for calling the composer on a view and
  7. * searching through the view composers for a given view name. It is injected
  8. * into the View_Factory and View instances themselves, and is managed as a singleton
  9. * by the application IoC container.
  10. */
  11. class View_Composer {
  12. /**
  13. * The application instance.
  14. *
  15. * @var Application
  16. */
  17. protected $application;
  18. /**
  19. * The view composers.
  20. *
  21. * @var array
  22. */
  23. protected $composers;
  24. /**
  25. * Create a new view composer instance.
  26. *
  27. * @param array $composers
  28. * @return void
  29. */
  30. public function __construct(Application $application, $composers)
  31. {
  32. $this->application = $application;
  33. $this->composers = $composers;
  34. }
  35. /**
  36. * Find the key for a view by name.
  37. *
  38. * @param string $name
  39. * @return string
  40. */
  41. public function name($name)
  42. {
  43. foreach ($this->composers as $key => $value)
  44. {
  45. if ($name === $value or (isset($value['name']) and $name === $value['name'])) { return $key; }
  46. }
  47. }
  48. /**
  49. * Call the composer for the view instance.
  50. *
  51. * @param View $view
  52. * @return void
  53. */
  54. public function compose(View $view)
  55. {
  56. if (isset($this->composers[$view->view]))
  57. {
  58. foreach ((array) $this->composers[$view->view] as $key => $value)
  59. {
  60. if ($value instanceof \Closure) return call_user_func($value, $this->application, $view);
  61. }
  62. }
  63. }
  64. }
  65. /**
  66. * The view factory class is responsible for the instantiation of Views. It is typically
  67. * access through the application instance from a route or controller, and is managed
  68. * as a singleton by the application IoC container.
  69. */
  70. class View_Factory {
  71. /**
  72. * The view composer instance.
  73. *
  74. * @var View_Composer
  75. */
  76. protected $composer;
  77. /**
  78. * The directory containing the views.
  79. *
  80. * @var string
  81. */
  82. protected $path;
  83. /**
  84. * Create a new view factory instance.
  85. *
  86. * @param View_Composer $composer
  87. * @param string $path
  88. * @return void
  89. */
  90. public function __construct(View_Composer $composer, $path)
  91. {
  92. $this->composer = $composer;
  93. $this->path = $path;
  94. }
  95. /**
  96. * Create a new view instance.
  97. *
  98. * @param string $view
  99. * @param array $data
  100. * @return View
  101. */
  102. public function make($view, $data = array())
  103. {
  104. return new View($view, $data, $this->path($view), $this->composer, $this);
  105. }
  106. /**
  107. * Create a new view instance from a view name.
  108. *
  109. * @param string $name
  110. * @param array $data
  111. * @return View
  112. */
  113. protected function of($name, $data = array())
  114. {
  115. if ( ! is_null($view = $this->composer->name($name)))
  116. {
  117. return new View($view, $data, $this->path($view), $this->composer, $this);
  118. }
  119. throw new \Exception("Named view [$name] is not defined.");
  120. }
  121. /**
  122. * Get the path to a given view on disk.
  123. *
  124. * @param string $view
  125. * @return string
  126. */
  127. protected function path($view)
  128. {
  129. return $this->path.str_replace('.', '/', $view).EXT;
  130. }
  131. /**
  132. * Magic Method for handling the dynamic creation of named views.
  133. */
  134. public function __call($method, $parameters)
  135. {
  136. if (strpos($method, 'of_') === 0)
  137. {
  138. return $this->of(substr($method, 3), Arr::get($parameters, 0, array()));
  139. }
  140. }
  141. }
  142. /**
  143. * The view class is returned by the View Factory "make" method, and is the primary
  144. * class for working with individual views. It provides methods for binding data to
  145. * views as well as evaluating and rendering their contents.
  146. */
  147. class View {
  148. /**
  149. * The name of the view.
  150. *
  151. * @var string
  152. */
  153. public $view;
  154. /**
  155. * The view data.
  156. *
  157. * @var array
  158. */
  159. public $data;
  160. /**
  161. * The path to the view on disk.
  162. *
  163. * @var string
  164. */
  165. protected $path;
  166. /**
  167. * The view composer instance.
  168. *
  169. * @var View_Composer
  170. */
  171. protected $composer;
  172. /**
  173. * The view factory instance, which is used to create sub-views.
  174. *
  175. * @var View_Factory
  176. */
  177. protected $factory;
  178. /**
  179. * Create a new view instance.
  180. *
  181. * @param string $view
  182. * @param array $data
  183. * @param string $path
  184. * @param View_Composer $composer
  185. * @param View_Factory $factory
  186. * @return void
  187. */
  188. public function __construct($view, $data, $path, View_Composer $composer, View_Factory $factory)
  189. {
  190. $this->view = $view;
  191. $this->data = $data;
  192. $this->path = $path;
  193. $this->factory = $factory;
  194. $this->composer = $composer;
  195. if ( ! file_exists($this->path))
  196. {
  197. throw new \Exception('View ['.$this->path.'] does not exist.');
  198. }
  199. }
  200. /**
  201. * Get the evaluated string content of the view.
  202. *
  203. * If the view has a composer, it will be executed. All sub-views and responses will
  204. * also be evaluated and converted to their string values.
  205. *
  206. * @return string
  207. */
  208. public function render()
  209. {
  210. $this->composer->compose($this);
  211. foreach ($this->data as &$data)
  212. {
  213. if ($data instanceof View or $data instanceof Response) $data = $data->render();
  214. }
  215. ob_start() and extract($this->data, EXTR_SKIP);
  216. try { include $this->path; } catch (\Exception $e) { ob_get_clean(); throw $e; }
  217. return ob_get_clean();
  218. }
  219. /**
  220. * Add a view instance to the view data.
  221. *
  222. * @param string $key
  223. * @param string $view
  224. * @param array $data
  225. * @return View
  226. */
  227. public function partial($key, $view, $data = array())
  228. {
  229. return $this->with($key, $this->factory->make($view, $data));
  230. }
  231. /**
  232. * Add a key / value pair to the view data.
  233. *
  234. * Bound data will be available to the view as variables.
  235. *
  236. * @param string $key
  237. * @param mixed $value
  238. * @return View
  239. */
  240. public function with($key, $value)
  241. {
  242. $this->data[$key] = $value;
  243. return $this;
  244. }
  245. /**
  246. * Magic Method for getting items from the view data.
  247. */
  248. public function __get($key)
  249. {
  250. return $this->data[$key];
  251. }
  252. /**
  253. * Magic Method for setting items in the view data.
  254. */
  255. public function __set($key, $value)
  256. {
  257. $this->with($key, $value);
  258. }
  259. /**
  260. * Magic Method for determining if an item is in the view data.
  261. */
  262. public function __isset($key)
  263. {
  264. return array_key_exists($key, $this->data);
  265. }
  266. /**
  267. * Magic Method for removing an item from the view data.
  268. */
  269. public function __unset($key)
  270. {
  271. unset($this->data[$key]);
  272. }
  273. }