view.php 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <?php namespace System;
  2. class View {
  3. /**
  4. * The name of the view.
  5. *
  6. * @var string
  7. */
  8. public $view;
  9. /**
  10. * The view data.
  11. *
  12. * @var array
  13. */
  14. public $data = array();
  15. /**
  16. * The path to the view.
  17. *
  18. * @var string
  19. */
  20. public $path;
  21. /**
  22. * The view composers.
  23. *
  24. * @var array
  25. */
  26. private static $composers;
  27. /**
  28. * Create a new view instance.
  29. *
  30. * @param string $view
  31. * @param array $data
  32. * @return void
  33. */
  34. public function __construct($view, $data = array())
  35. {
  36. $this->view = $view;
  37. $this->data = $data;
  38. $this->path = $this->find();
  39. }
  40. /**
  41. * Create a new view instance.
  42. *
  43. * @param string $view
  44. * @param array $data
  45. * @return View
  46. */
  47. public static function make($view, $data = array())
  48. {
  49. if (is_null(static::$composers))
  50. {
  51. static::$composers = require APP_PATH.'composers'.EXT;
  52. }
  53. $instance = new static($view, $data);
  54. return (isset(static::$composers[$view])) ? call_user_func(static::$composers[$view], $instance) : $instance;
  55. }
  56. /**
  57. * Create a new named view instance.
  58. *
  59. * @param string $view
  60. * @param array $data
  61. * @return View
  62. */
  63. public static function of($view, $data = array())
  64. {
  65. $views = Config::get('view.names');
  66. if ( ! array_key_exists($view, $views))
  67. {
  68. throw new \Exception("Named view [$view] is not defined.");
  69. }
  70. return static::make($views[$view], $data);
  71. }
  72. /**
  73. * Get the parsed content of the view.
  74. *
  75. * @return string
  76. */
  77. public function get()
  78. {
  79. foreach ($this->data as &$data)
  80. {
  81. if ($data instanceof View or $data instanceof Response)
  82. {
  83. $data = (string) $data;
  84. }
  85. }
  86. extract($this->data, EXTR_SKIP);
  87. ob_start();
  88. try { include $this->path; } catch (\Exception $e) { Error::handle($e); }
  89. return ob_get_clean();
  90. }
  91. /**
  92. * Get the full path to the view.
  93. *
  94. * Views are cascaded, so the application directory views will take
  95. * precedence over system directory views of the same name.
  96. *
  97. * @return string
  98. */
  99. protected function find()
  100. {
  101. if (file_exists($path = VIEW_PATH.$this->view.EXT))
  102. {
  103. return $path;
  104. }
  105. elseif (file_exists($path = SYS_VIEW_PATH.$this->view.EXT))
  106. {
  107. return $path;
  108. }
  109. throw new \Exception("View [".$this->view."] doesn't exist.");
  110. }
  111. /**
  112. * Add a view instance to the view data.
  113. *
  114. * @param string $key
  115. * @param string $view
  116. * @param array $data
  117. * @return View
  118. */
  119. public function partial($key, $view, $data = array())
  120. {
  121. return $this->bind($key, static::make($view, $data));
  122. }
  123. /**
  124. * Add a key / value pair to the view data.
  125. *
  126. * @param string $key
  127. * @param mixed $value
  128. * @return View
  129. */
  130. public function bind($key, $value)
  131. {
  132. $this->data[$key] = $value;
  133. return $this;
  134. }
  135. /**
  136. * Magic Method for creating named view instances.
  137. */
  138. public static function __callStatic($method, $parameters)
  139. {
  140. if (strpos($method, 'of_') === 0)
  141. {
  142. return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
  143. }
  144. }
  145. /**
  146. * Magic Method for getting items from the view data.
  147. */
  148. public function __get($key)
  149. {
  150. return $this->data[$key];
  151. }
  152. /**
  153. * Magic Method for setting items in the view data.
  154. */
  155. public function __set($key, $value)
  156. {
  157. $this->bind($key, $value);
  158. }
  159. /**
  160. * Magic Method for determining if an item is in the view data.
  161. */
  162. public function __isset($key)
  163. {
  164. return array_key_exists($key, $this->data);
  165. }
  166. /**
  167. * Magic Method for removing an item from the view data.
  168. */
  169. public function __unset($key)
  170. {
  171. unset($this->data[$key]);
  172. }
  173. /**
  174. * Get the parsed content of the View.
  175. */
  176. public function __toString()
  177. {
  178. return $this->get();
  179. }
  180. }