view.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. public static $composers;
  33. /**
  34. * Create a new view instance.
  35. *
  36. * @param string $view
  37. * @param array $data
  38. * @return void
  39. */
  40. public function __construct($view, $data = array())
  41. {
  42. $this->data = $data;
  43. list($this->module, $this->path, $this->view) = static::parse($view);
  44. $this->compose();
  45. }
  46. /**
  47. * Create a new view instance.
  48. *
  49. * @param string $view
  50. * @param array $data
  51. * @return View
  52. */
  53. public static function make($view, $data = array())
  54. {
  55. return new static($view, $data);
  56. }
  57. /**
  58. * Create a new view instance from a view name.
  59. *
  60. * The view names for the active module will be searched first, followed by
  61. * the view names for the application directory, followed by the view names
  62. * for all other modules.
  63. *
  64. * @param string $name
  65. * @param array $data
  66. * @return View
  67. */
  68. protected static function of($name, $data = array())
  69. {
  70. foreach (array_unique(array_merge(array(ACTIVE_MODULE, 'application'), Config::get('application.modules'))) as $module)
  71. {
  72. static::load_composers($module);
  73. foreach (static::$composers[$module] as $key => $value)
  74. {
  75. if ($name === $value or (isset($value['name']) and $name === $value['name']))
  76. {
  77. $key = ($module !== 'application') ? $module.'::'.$key : $key;
  78. return new static($key, $data);
  79. }
  80. }
  81. }
  82. throw new \Exception("Named view [$name] is not defined.");
  83. }
  84. /**
  85. * Parse a view identifier and get the module, path, and view name.
  86. *
  87. * @param string $view
  88. * @return array
  89. */
  90. protected static function parse($view)
  91. {
  92. $module = (strpos($view, '::') !== false) ? substr($view, 0, strpos($view, ':')) : 'application';
  93. $path = ($module == 'application') ? VIEW_PATH : MODULE_PATH.$module.'/views/';
  94. if ($module != 'application')
  95. {
  96. $view = substr($view, strpos($view, ':') + 2);
  97. }
  98. return array($module, $path, $view);
  99. }
  100. /**
  101. * Call the composer for the view instance.
  102. *
  103. * @return void
  104. */
  105. protected function compose()
  106. {
  107. static::load_composers($this->module);
  108. if (isset(static::$composers[$this->module][$this->view]))
  109. {
  110. foreach ((array) static::$composers[$this->module][$this->view] as $key => $value)
  111. {
  112. if (is_callable($value)) return call_user_func($value, $this);
  113. }
  114. }
  115. }
  116. /**
  117. * Load the view composers for a given module.
  118. *
  119. * @param string $module
  120. * @return void
  121. */
  122. protected static function load_composers($module)
  123. {
  124. if (isset(static::$composers[$module])) return;
  125. $composers = ($module == 'application') ? APP_PATH.'composers'.EXT : MODULE_PATH.$module.'/composers'.EXT;
  126. static::$composers[$module] = (file_exists($composers)) ? require $composers : array();
  127. }
  128. /**
  129. * Get the parsed content of the view.
  130. *
  131. * @return string
  132. */
  133. public function get()
  134. {
  135. $view = str_replace('.', '/', $this->view);
  136. if ( ! file_exists($this->path.$view.EXT))
  137. {
  138. Exception\Handler::make(new \Exception("View [$view] does not exist."))->handle();
  139. }
  140. foreach ($this->data as &$data)
  141. {
  142. if ($data instanceof View or $data instanceof Response) $data = (string) $data;
  143. }
  144. ob_start() and extract($this->data, EXTR_SKIP);
  145. try { include $this->path.$view.EXT; } catch (\Exception $e) { Exception\Handler::make($e)->handle(); }
  146. return ob_get_clean();
  147. }
  148. /**
  149. * Add a view instance to the view data.
  150. *
  151. * @param string $key
  152. * @param string $view
  153. * @param array $data
  154. * @return View
  155. */
  156. public function partial($key, $view, $data = array())
  157. {
  158. return $this->bind($key, new static($view, $data));
  159. }
  160. /**
  161. * Add a key / value pair to the view data.
  162. *
  163. * @param string $key
  164. * @param mixed $value
  165. * @return View
  166. */
  167. public function bind($key, $value)
  168. {
  169. $this->data[$key] = $value;
  170. return $this;
  171. }
  172. /**
  173. * Magic Method for handling the dynamic creation of named views.
  174. */
  175. public static function __callStatic($method, $parameters)
  176. {
  177. if (strpos($method, 'of_') === 0)
  178. {
  179. return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
  180. }
  181. }
  182. /**
  183. * Magic Method for getting items from the view data.
  184. */
  185. public function __get($key)
  186. {
  187. return $this->data[$key];
  188. }
  189. /**
  190. * Magic Method for setting items in the view data.
  191. */
  192. public function __set($key, $value)
  193. {
  194. $this->bind($key, $value);
  195. }
  196. /**
  197. * Magic Method for determining if an item is in the view data.
  198. */
  199. public function __isset($key)
  200. {
  201. return array_key_exists($key, $this->data);
  202. }
  203. /**
  204. * Magic Method for removing an item from the view data.
  205. */
  206. public function __unset($key)
  207. {
  208. unset($this->data[$key]);
  209. }
  210. /**
  211. * Get the parsed content of the View.
  212. */
  213. public function __toString()
  214. {
  215. return $this->get();
  216. }
  217. }