view.php 3.4 KB

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