view.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 content of the view.
  17. *
  18. * @var string
  19. */
  20. public $content = '';
  21. /**
  22. * The name of last rendered view.
  23. *
  24. * @var string
  25. */
  26. public static $last;
  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. // -----------------------------------------------------
  39. // Get the contents of the view from the file system.
  40. // -----------------------------------------------------
  41. $this->content = $this->load($view);
  42. }
  43. /**
  44. * Create a new view instance.
  45. *
  46. * @param string $view
  47. * @param array $data
  48. * @return View
  49. */
  50. public static function make($view, $data = array())
  51. {
  52. return new self($view, $data);
  53. }
  54. /**
  55. * Load the content of a view.
  56. *
  57. * @param string $view
  58. * @return string
  59. */
  60. private function load($view)
  61. {
  62. // -----------------------------------------------------
  63. // Is the view in the application directory?
  64. // -----------------------------------------------------
  65. if (file_exists($path = APP_PATH.'views/'.$view.EXT))
  66. {
  67. return file_get_contents($path);
  68. }
  69. // -----------------------------------------------------
  70. // Is the view in the system directory?
  71. // -----------------------------------------------------
  72. elseif (file_exists($path = SYS_PATH.'views/'.$view.EXT))
  73. {
  74. return file_get_contents($path);
  75. }
  76. // -----------------------------------------------------
  77. // Could not locate the view... bail out.
  78. // -----------------------------------------------------
  79. else
  80. {
  81. throw new \Exception("View [$view] doesn't exist.");
  82. }
  83. }
  84. /**
  85. * Add a key / value pair to the view data.
  86. *
  87. * @param string $key
  88. * @param mixed $value
  89. * @return View
  90. */
  91. public function bind($key, $value)
  92. {
  93. $this->data[$key] = $value;
  94. return $this;
  95. }
  96. /**
  97. * Get the parsed content of the view.
  98. *
  99. * @return string
  100. */
  101. public function get()
  102. {
  103. // -----------------------------------------------------
  104. // Set the name of the last rendered view.
  105. // -----------------------------------------------------
  106. static::$last = $this->view;
  107. // -----------------------------------------------------
  108. // Get the content of all of the sub-views.
  109. // -----------------------------------------------------
  110. foreach ($this->data as &$data)
  111. {
  112. if ($data instanceof View or $data instanceof Response)
  113. {
  114. $data = (string) $data;
  115. }
  116. }
  117. // -----------------------------------------------------
  118. // Extract the view data into the local scope.
  119. // -----------------------------------------------------
  120. extract($this->data, EXTR_SKIP);
  121. // -----------------------------------------------------
  122. // Start an output buffer to catch the content.
  123. // -----------------------------------------------------
  124. ob_start();
  125. // -----------------------------------------------------
  126. // Echo the content of the view.
  127. // -----------------------------------------------------
  128. echo eval('?>'.$this->content);
  129. // -----------------------------------------------------
  130. // Get the contents of the output buffer.
  131. // -----------------------------------------------------
  132. return ob_get_clean();
  133. }
  134. /**
  135. * Magic Method for getting items from the view data.
  136. */
  137. public function __get($key)
  138. {
  139. return $this->data[$key];
  140. }
  141. /**
  142. * Magic Method for setting items in the view data.
  143. */
  144. public function __set($key, $value)
  145. {
  146. $this->bind($key, $value);
  147. }
  148. /**
  149. * Magic Method for determining if an item is in the view data.
  150. */
  151. public function __isset($key)
  152. {
  153. return array_key_exists($key, $this->data);
  154. }
  155. /**
  156. * Magic Method for removing an item from the view data.
  157. */
  158. public function __unset($key)
  159. {
  160. unset($this->data[$key]);
  161. }
  162. /**
  163. * Get the parsed content of the View.
  164. */
  165. public function __toString()
  166. {
  167. return $this->get();
  168. }
  169. }