view.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. * Create a new view instance.
  17. *
  18. * @param string $view
  19. * @param array $data
  20. * @return void
  21. */
  22. public function __construct($view, $data = array())
  23. {
  24. $this->view = $view;
  25. $this->data = $data;
  26. }
  27. /**
  28. * Create a new view instance.
  29. *
  30. * @param string $view
  31. * @param array $data
  32. * @return View
  33. */
  34. public static function make($view, $data = array())
  35. {
  36. return new self($view, $data);
  37. }
  38. /**
  39. * Get the parsed content of the view.
  40. *
  41. * @return string
  42. */
  43. public function get()
  44. {
  45. // Get the evaluated content of all of the sub-views.
  46. foreach ($this->data as &$data)
  47. {
  48. if ($data instanceof View or $data instanceof Response)
  49. {
  50. $data = (string) $data;
  51. }
  52. }
  53. extract($this->data, EXTR_SKIP);
  54. ob_start();
  55. $path = $this->find();
  56. try { include $path; } catch (\Exception $e) { Error::handle($e); }
  57. return ob_get_clean();
  58. }
  59. /**
  60. * Get the full path to the view.
  61. *
  62. * Views are cascaded, so the application directory views will take
  63. * precedence over system directory views of the same name.
  64. *
  65. * @return string
  66. */
  67. private function find()
  68. {
  69. if (file_exists($path = APP_PATH.'views/'.$this->view.EXT))
  70. {
  71. return $path;
  72. }
  73. elseif (file_exists($path = SYS_PATH.'views/'.$this->view.EXT))
  74. {
  75. return $path;
  76. }
  77. else
  78. {
  79. throw new \Exception("View [".$this->view."] doesn't exist.");
  80. }
  81. }
  82. /**
  83. * Add a key / value pair to the view data.
  84. *
  85. * @param string $key
  86. * @param mixed $value
  87. * @return View
  88. */
  89. public function bind($key, $value)
  90. {
  91. $this->data[$key] = $value;
  92. return $this;
  93. }
  94. /**
  95. * Magic Method for getting items from the view data.
  96. */
  97. public function __get($key)
  98. {
  99. return $this->data[$key];
  100. }
  101. /**
  102. * Magic Method for setting items in the view data.
  103. */
  104. public function __set($key, $value)
  105. {
  106. $this->bind($key, $value);
  107. }
  108. /**
  109. * Magic Method for determining if an item is in the view data.
  110. */
  111. public function __isset($key)
  112. {
  113. return array_key_exists($key, $this->data);
  114. }
  115. /**
  116. * Magic Method for removing an item from the view data.
  117. */
  118. public function __unset($key)
  119. {
  120. unset($this->data[$key]);
  121. }
  122. /**
  123. * Get the parsed content of the View.
  124. */
  125. public function __toString()
  126. {
  127. return $this->get();
  128. }
  129. }