$_smarty_tpl->tpl_vars['Variable']->value
I wonder how smarty accesses objects. smarty_tpl is the object, but what is the property in the code example of a compiled tpl? Is it the array tpl_vars or value or a mixture of both?
In php, I create a smarty object and use it with methods (e.g. assign and display).
In the template itself (file .tpl) i do not use OOP, but a procedural style like in html.
I have tried to make a small example, that will hopefully make this syntax clear to you: