text = $text; } public function render() { // here one could add some translation functionality.. return "{$this->text}
"; } } $config = ezcTemplateConfiguration::getInstance(); $config->compilePath = dirname( __FILE__ ) . "/t_compiled"; $t = new ezcTemplate(); $t->addExtension( new ezcWgTplTemplateExtension() ); echo $t->process( "show_widget.tpl" ); ?>