view.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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 module that contains the view.
  17. *
  18. * @var string
  19. */
  20. public $module;
  21. /**
  22. * The path to the view.
  23. *
  24. * @var string
  25. */
  26. public $path;
  27. /**
  28. * The defined view composers.
  29. *
  30. * @var array
  31. */
  32. private static $composers;
  33. /**
  34. * The defined view names.
  35. *
  36. * @var array
  37. */
  38. private static $names;
  39. /**
  40. * Create a new view instance.
  41. *
  42. * @param string $view
  43. * @param array $data
  44. * @return void
  45. */
  46. public function __construct($view, $data = array())
  47. {
  48. $this->data = $data;
  49. list($this->module, $this->path, $this->view) = static::parse($view);
  50. if ( ! file_exists($this->path.$this->view.EXT))
  51. {
  52. throw new \Exception("View [$view] does not exist.");
  53. }
  54. $this->compose();
  55. }
  56. /**
  57. * Create a new view instance.
  58. *
  59. * @param string $view
  60. * @param array $data
  61. * @return View
  62. */
  63. public static function make($view, $data = array())
  64. {
  65. return new static($view, $data);
  66. }
  67. /**
  68. * Parse a view identifier and get the module, path, and view name.
  69. *
  70. * @param string $view
  71. * @return array
  72. */
  73. private static function parse($view)
  74. {
  75. // Check for a module qualifier. If a module name is present, we need to extract it from
  76. // the view name, otherwise, we will use "application" as the module.
  77. $module = (strpos($view, '::') !== false) ? substr($view, 0, strpos($view, ':')) : 'application';
  78. $path = ($module == 'application') ? VIEW_PATH : MODULE_PATH.$module.'/views/';
  79. // If the view is stored in a module, we need to strip the module qualifier off
  80. // of the view name before continuing.
  81. if ($module != 'application')
  82. {
  83. $view = substr($view, strpos($view, ':') + 2);
  84. }
  85. return array($module, $path, str_replace('.', '/', $view));
  86. }
  87. /**
  88. * Call the composer for the view instance.
  89. *
  90. * @return void
  91. */
  92. private function compose()
  93. {
  94. if ( ! isset(static::$composers[$this->module]))
  95. {
  96. static::$composers[$this->module] = (file_exists($path = $this->path.'composers'.EXT)) ? require $path : array();
  97. }
  98. if (isset(static::$composers[$this->module][$this->view]))
  99. {
  100. call_user_func(static::$composers[$this->module][$this->view], $this);
  101. }
  102. }
  103. /**
  104. * Get the parsed content of the view.
  105. *
  106. * @return string
  107. */
  108. public function get()
  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. extract($this->data, EXTR_SKIP);
  118. ob_start();
  119. try { include $this->path.$this->view.EXT; } catch (\Exception $e) { Error::handle($e); }
  120. return ob_get_clean();
  121. }
  122. /**
  123. * Add a view instance to the view data.
  124. *
  125. * @param string $key
  126. * @param string $view
  127. * @param array $data
  128. * @return View
  129. */
  130. public function partial($key, $view, $data = array())
  131. {
  132. return $this->bind($key, static::make($view, $data));
  133. }
  134. /**
  135. * Add a key / value pair to the view data.
  136. *
  137. * @param string $key
  138. * @param mixed $value
  139. * @return View
  140. */
  141. public function bind($key, $value)
  142. {
  143. $this->data[$key] = $value;
  144. return $this;
  145. }
  146. /**
  147. * Magic Method for getting items from the view data.
  148. */
  149. public function __get($key)
  150. {
  151. return $this->data[$key];
  152. }
  153. /**
  154. * Magic Method for setting items in the view data.
  155. */
  156. public function __set($key, $value)
  157. {
  158. $this->bind($key, $value);
  159. }
  160. /**
  161. * Magic Method for determining if an item is in the view data.
  162. */
  163. public function __isset($key)
  164. {
  165. return array_key_exists($key, $this->data);
  166. }
  167. /**
  168. * Magic Method for removing an item from the view data.
  169. */
  170. public function __unset($key)
  171. {
  172. unset($this->data[$key]);
  173. }
  174. /**
  175. * Get the parsed content of the View.
  176. */
  177. public function __toString()
  178. {
  179. return $this->get();
  180. }
  181. }