You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

92 lines
2.5 KiB

  1. <?php
  2. /**
  3. * Простейший шаблонизатор.
  4. * Зато быстрый.
  5. *
  6. */
  7. final class Sublimer
  8. {
  9. const GLOBAL_KEY = 0;
  10. public $vars = array();
  11. public $path = '';
  12. public $template = '';
  13. protected $head_array = array();
  14. /**
  15. * Конструктор
  16. *
  17. * @param string $path - путь до шаблонов
  18. */
  19. public function __construct($path = '')
  20. {
  21. $this->setPath($path);
  22. $this->vars[self::GLOBAL_KEY] = array();
  23. }
  24. /**
  25. * Присвоить переменную только
  26. *
  27. * @param string $name - имя переменной
  28. * @param mixed $value - значение переменной
  29. * @param string $template - шаблон, если не указан, то переменная глобальная
  30. */
  31. public function assign($name, $value, $template = self::GLOBAL_KEY)
  32. {
  33. $this->vars[$template][$name] = $value;
  34. }
  35. /**
  36. * Очистить стек переменных
  37. * @param boolean $with_local - включая локальные переменные
  38. */
  39. public function clear($template = self::GLOBAL_KEY)
  40. {
  41. $this->vars[$template] = array();
  42. }
  43. /**
  44. * Обработать шаблон
  45. *
  46. * @param string $template - относительный путь до шаблона
  47. * @return string - обработанное содержимое шаблона
  48. */
  49. public function fetch($template)
  50. {
  51. $this->template = $template; //дабы экстракт не перезатер нам переменную. Это важно! $this то он не перезатрет :)
  52. extract($this->vars[self::GLOBAL_KEY]);
  53. if (isset($this->vars[$this->template])) {
  54. extract($this->vars[$this->template], EXTR_OVERWRITE);
  55. }
  56. ob_start();
  57. if (!(include $this->path.'/'.$this->template) == 'OK') {
  58. throw new MJException('Template '.$this->path.'/'.$this->template.' not found');
  59. }
  60. return ob_get_clean();
  61. }
  62. /**
  63. * Установать путь до шаблонов
  64. *
  65. * @param string $path - путь до шаблонов
  66. */
  67. public function setPath($path)
  68. {
  69. $this->path = $path;
  70. }
  71. //Функции для вызова из шаблонов.
  72. protected function addHead($str)
  73. {
  74. $this->head_array[] = $str;
  75. }
  76. protected function getHead()
  77. {
  78. return $this->head_array;
  79. }
  80. }
  81. ?>