view.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  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 = VIEW_PATH.$this->view.EXT))
  92. {
  93. return $path;
  94. }
  95. elseif (file_exists($path = SYS_VIEW_PATH.$this->view.EXT))
  96. {
  97. return $path;
  98. }
  99. throw new \Exception("View [".$this->view."] doesn't exist.");
  100. }
  101. /**
  102. * Add a view instance to the view data.
  103. *
  104. * @param string $key
  105. * @param string $view
  106. * @param array $data
  107. * @return View
  108. */
  109. public function partial($key, $view, $data = array())
  110. {
  111. return $this->bind($key, static::make($view, $data));
  112. }
  113. /**
  114. * Add a key / value pair to the view data.
  115. *
  116. * @param string $key
  117. * @param mixed $value
  118. * @return View
  119. */
  120. public function bind($key, $value)
  121. {
  122. $this->data[$key] = $value;
  123. return $this;
  124. }
  125. /**
  126. * Magic Method for creating named view instances.
  127. */
  128. public static function __callStatic($method, $parameters)
  129. {
  130. if (strpos($method, 'of_') === 0)
  131. {
  132. return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
  133. }
  134. }
  135. /**
  136. * Magic Method for getting items from the view data.
  137. */
  138. public function __get($key)
  139. {
  140. return $this->data[$key];
  141. }
  142. /**
  143. * Magic Method for setting items in the view data.
  144. */
  145. public function __set($key, $value)
  146. {
  147. $this->bind($key, $value);
  148. }
  149. /**
  150. * Magic Method for determining if an item is in the view data.
  151. */
  152. public function __isset($key)
  153. {
  154. return array_key_exists($key, $this->data);
  155. }
  156. /**
  157. * Magic Method for removing an item from the view data.
  158. */
  159. public function __unset($key)
  160. {
  161. unset($this->data[$key]);
  162. }
  163. /**
  164. * Get the parsed content of the View.
  165. */
  166. public function __toString()
  167. {
  168. return $this->get();
  169. }
  170. }