And what if i have more than 10 Variables in a Template?
Do i have to register each variable ?
PHP Code:
$templater->register('your_variable', $your_variable);
$templater->register('your_variable2', $your_variable2);
$templater->register('your_variable3', $your_variable3);
.
.
$templater->register('your_variable10', $your_variable10);
Does this way loose Performance (Many Class calls) ?
Or is there a Array ?
In my opinion the old way was more easier than this !