MySQL interesse |
|
Hallo allemaal,
Ik ben bezig geweest met een eigen templateparser alleen ben ik nu een beetje vastgelopen.
Template.php
http://shibble.pastebin.com/m315bf5e8
nu heb ik in mijn controller action het volgende:
$this->registry['template']->assignVar('Module', 'Default');
$this->registry['template']->assignVar('Controller', 'IndexController');
$this->registry['template']->assignVar('Action', 'indexAction');
$this->registry['template']->parse();
$this->registry['template']->assignVar('Module', 'Default'); $this->registry['template']->assignVar('Controller', 'IndexController'); $this->registry['template']->assignVar('Action', 'indexAction'); $this->registry['template']->parse();
alleen het probleem is nu dat er helemaal niks geparsed wordt...
verander ik bij me parse() function de "return" in "echo" dan wordt de index.tpl wel geparsed alleen worden de variables [Controller], [Module] & [Action] niet herplaatst wat doe ik hier fout?
Mvg,
shibble
|