00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 class TemplatedBlock extends BlockBase {
00017 protected $view_is_rendered = false;
00018 protected $template = '';
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 public function __construct($name, $title, $template, $index = 1000, $position = self::LEFT) {
00030 parent::__construct($name, $title, '', $index, $position);
00031 $this->template = $template;
00032 }
00033
00034
00035
00036
00037
00038
00039
00040 protected function create_view($template) {
00041 $view = ViewFactory::create_view(IViewFactory::MESSAGE, $template, $page_data);
00042 $view->assign('block', $this);
00043 $this->configure_view($view);
00044 return $view;
00045 }
00046
00047
00048
00049
00050
00051
00052 protected function configure_view($view) {
00053
00054 }
00055
00056
00057
00058
00059
00060
00061 public function get_content() {
00062 if (!$this->view_is_rendered) {
00063 $this->view_is_rendered = true;
00064 $view = $this->create_view($this->template);
00065 $this->set_content($view->render());
00066 }
00067 return parent::get_content();
00068 }
00069
00070
00071
00072
00073
00074
00075
00076 public function render($policy = self::NONE) {
00077 if (!$this->view_is_rendered) {
00078 $this->get_content();
00079 }
00080 return parent::render($policy);
00081 }
00082 }