view.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. * 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. $this->path = $this->find();
  33. }
  34. /**
  35. * Create a new view instance.
  36. *
  37. * @param string $view
  38. * @param array $data
  39. * @return View
  40. */
  41. public static function make($view, $data = array())
  42. {
  43. return new static($view, $data);
  44. }
  45. /**
  46. * Get the parsed content of the view.
  47. *
  48. * @return string
  49. */
  50. public function get()
  51. {
  52. // Get the evaluated content of all of the sub-views.
  53. foreach ($this->data as &$data)
  54. {
  55. if ($data instanceof View or $data instanceof Response)
  56. {
  57. $data = (string) $data;
  58. }
  59. }
  60. extract($this->data, EXTR_SKIP);
  61. ob_start();
  62. try { include $this->path; } catch (\Exception $e) { Error::handle($e); }
  63. return ob_get_clean();
  64. }
  65. /**
  66. * Get the full path to the view.
  67. *
  68. * Views are cascaded, so the application directory views will take
  69. * precedence over system directory views of the same name.
  70. *
  71. * @return string
  72. */
  73. private function find()
  74. {
  75. if (file_exists($path = APP_PATH.'views/'.$this->view.EXT))
  76. {
  77. return $path;
  78. }
  79. elseif (file_exists($path = SYS_PATH.'views/'.$this->view.EXT))
  80. {
  81. return $path;
  82. }
  83. else
  84. {
  85. throw new \Exception("View [".$this->view."] doesn't exist.");
  86. }
  87. }
  88. /**
  89. * Add a key / value pair to the view data.
  90. *
  91. * @param string $key
  92. * @param mixed $value
  93. * @return View
  94. */
  95. public function bind($key, $value)
  96. {
  97. $this->data[$key] = $value;
  98. return $this;
  99. }
  100. /**
  101. * Magic Method for creating named view instances.
  102. */
  103. public static function __callStatic($method, $parameters)
  104. {
  105. if (strpos($method, 'of_') === 0)
  106. {
  107. $views = Config::get('view.names');
  108. if ( ! array_key_exists($view = substr($method, 3), $views))
  109. {
  110. throw new \Exception("Named view [$view] is not defined.");
  111. }
  112. return static::make($views[$view], (isset($parameters[0]) and is_array($parameters[0])) ? $parameters[0] : array());
  113. }
  114. }
  115. /**
  116. * Magic Method for getting items from the view data.
  117. */
  118. public function __get($key)
  119. {
  120. return $this->data[$key];
  121. }
  122. /**
  123. * Magic Method for setting items in the view data.
  124. */
  125. public function __set($key, $value)
  126. {
  127. $this->bind($key, $value);
  128. }
  129. /**
  130. * Magic Method for determining if an item is in the view data.
  131. */
  132. public function __isset($key)
  133. {
  134. return array_key_exists($key, $this->data);
  135. }
  136. /**
  137. * Magic Method for removing an item from the view data.
  138. */
  139. public function __unset($key)
  140. {
  141. unset($this->data[$key]);
  142. }
  143. /**
  144. * Get the parsed content of the View.
  145. */
  146. public function __toString()
  147. {
  148. return $this->get();
  149. }
  150. }