view.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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 name of last rendered view.
  17. *
  18. * @var string
  19. */
  20. public static $last;
  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. }
  33. /**
  34. * Create a new view instance.
  35. *
  36. * @param string $view
  37. * @param array $data
  38. * @return View
  39. */
  40. public static function make($view, $data = array())
  41. {
  42. return new self($view, $data);
  43. }
  44. /**
  45. * Get the parsed content of the view.
  46. *
  47. * @return string
  48. */
  49. public function get()
  50. {
  51. static::$last = $this->view;
  52. // -----------------------------------------------------
  53. // Get the evaluated content of all of the sub-views.
  54. // -----------------------------------------------------
  55. foreach ($this->data as &$data)
  56. {
  57. if ($data instanceof View or $data instanceof Response)
  58. {
  59. $data = (string) $data;
  60. }
  61. }
  62. // -----------------------------------------------------
  63. // Extract the view data into the local scope.
  64. // -----------------------------------------------------
  65. extract($this->data, EXTR_SKIP);
  66. // -----------------------------------------------------
  67. // Start the output buffer so nothing escapes to the
  68. // browser. The response will be sent later.
  69. // -----------------------------------------------------
  70. ob_start();
  71. $path = $this->find();
  72. // -----------------------------------------------------
  73. // We include the view into the local scope within a
  74. // try / catch block to catch any exceptions that may
  75. // occur while the view is rendering.
  76. // -----------------------------------------------------
  77. try
  78. {
  79. include $path;
  80. }
  81. catch (\Exception $e)
  82. {
  83. Error::handle($e);
  84. }
  85. return ob_get_clean();
  86. }
  87. /**
  88. * Get the full path to the view.
  89. *
  90. * Views are cascaded, so the application directory views
  91. * will take precedence over the system directory's views
  92. * of the same name.
  93. *
  94. * @return string
  95. */
  96. private function find()
  97. {
  98. if (file_exists($path = APP_PATH.'views/'.$this->view.EXT))
  99. {
  100. return $path;
  101. }
  102. elseif (file_exists($path = SYS_PATH.'views/'.$this->view.EXT))
  103. {
  104. return $path;
  105. }
  106. else
  107. {
  108. throw new \Exception("View [".$this->view."] doesn't exist.");
  109. }
  110. }
  111. /**
  112. * Add a key / value pair to the view data.
  113. *
  114. * @param string $key
  115. * @param mixed $value
  116. * @return View
  117. */
  118. public function bind($key, $value)
  119. {
  120. $this->data[$key] = $value;
  121. return $this;
  122. }
  123. /**
  124. * Magic Method for getting items from the view data.
  125. */
  126. public function __get($key)
  127. {
  128. return $this->data[$key];
  129. }
  130. /**
  131. * Magic Method for setting items in the view data.
  132. */
  133. public function __set($key, $value)
  134. {
  135. $this->bind($key, $value);
  136. }
  137. /**
  138. * Magic Method for determining if an item is in the view data.
  139. */
  140. public function __isset($key)
  141. {
  142. return array_key_exists($key, $this->data);
  143. }
  144. /**
  145. * Magic Method for removing an item from the view data.
  146. */
  147. public function __unset($key)
  148. {
  149. unset($this->data[$key]);
  150. }
  151. /**
  152. * Get the parsed content of the View.
  153. */
  154. public function __toString()
  155. {
  156. return $this->get();
  157. }
  158. }