I used to remember a useful snippet (Magento native) that allowed me to list all 开发者_StackOverflowavailable methods for a current template file.
Unfortunately I've lost is somewhere and would like to ask if there is anybody who can point me in the right direction?
Cheers!
Without thinking too much you are probably thinking of
<pre><?php print_r(get_class_methods(get_class($this))); ?></pre>
精彩评论