view.php 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. * The view composers.
  23. *
  24. * @var array
  25. */
  26. private static $composers;
  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. if ( ! file_exists($path = VIEW_PATH.$view.EXT))
  39. {
  40. throw new \Exception("View [$view] does not exist.");
  41. }
  42. $this->path = $path;
  43. }
  44. /**
  45. * Create a new view instance.
  46. *
  47. * @param string $view
  48. * @param array $data
  49. * @return View
  50. */
  51. public static function make($view, $data = array())
  52. {
  53. if (is_null(static::$composers))
  54. {
  55. static::$composers = require VIEW_PATH.'composers'.EXT;
  56. }
  57. $instance = new static($view, $data);
  58. return (isset(static::$composers[$view])) ? call_user_func(static::$composers[$view], $instance) : $instance;
  59. }
  60. /**
  61. * Create a new named view instance.
  62. *
  63. * @param string $view
  64. * @param array $data
  65. * @return View
  66. */
  67. public static function of($view, $data = array())
  68. {
  69. $views = Config::get('view.names');
  70. if ( ! array_key_exists($view, $views))
  71. {
  72. throw new \Exception("Named view [$view] is not defined.");
  73. }
  74. return static::make($views[$view], $data);
  75. }
  76. /**
  77. * Get the parsed content of the view.
  78. *
  79. * @return string
  80. */
  81. public function get()
  82. {
  83. foreach ($this->data as &$data)
  84. {
  85. if ($data instanceof View or $data instanceof Response)
  86. {
  87. $data = (string) $data;
  88. }
  89. }
  90. extract($this->data, EXTR_SKIP);
  91. ob_start();
  92. try { include $this->path; } catch (\Exception $e) { Error::handle($e); }
  93. return ob_get_clean();
  94. }
  95. /**
  96. * Add a view instance to the view data.
  97. *
  98. * @param string $key
  99. * @param string $view
  100. * @param array $data
  101. * @return View
  102. */
  103. public function partial($key, $view, $data = array())
  104. {
  105. return $this->bind($key, static::make($view, $data));
  106. }
  107. /**
  108. * Add a key / value pair to the view data.
  109. *
  110. * @param string $key
  111. * @param mixed $value
  112. * @return View
  113. */
  114. public function bind($key, $value)
  115. {
  116. $this->data[$key] = $value;
  117. return $this;
  118. }
  119. /**
  120. * Magic Method for creating named view instances.
  121. */
  122. public static function __callStatic($method, $parameters)
  123. {
  124. if (strpos($method, 'of_') === 0)
  125. {
  126. return static::of(substr($method, 3), Arr::get($parameters, 0, array()));
  127. }
  128. }
  129. /**
  130. * Magic Method for getting items from the view data.
  131. */
  132. public function __get($key)
  133. {
  134. return $this->data[$key];
  135. }
  136. /**
  137. * Magic Method for setting items in the view data.
  138. */
  139. public function __set($key, $value)
  140. {
  141. $this->bind($key, $value);
  142. }
  143. /**
  144. * Magic Method for determining if an item is in the view data.
  145. */
  146. public function __isset($key)
  147. {
  148. return array_key_exists($key, $this->data);
  149. }
  150. /**
  151. * Magic Method for removing an item from the view data.
  152. */
  153. public function __unset($key)
  154. {
  155. unset($this->data[$key]);
  156. }
  157. /**
  158. * Get the parsed content of the View.
  159. */
  160. public function __toString()
  161. {
  162. return $this->get();
  163. }
  164. }