Matthew Morek
Matthew Morek

Reputation: 2834

Display list of available methods for a given template

I used to remember a useful snippet (Magento native) that allowed me to list all available 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!

Upvotes: 0

Views: 710

Answers (1)

clockworkgeek
clockworkgeek

Reputation: 37700

Without thinking too much you are probably thinking of

<pre><?php print_r(get_class_methods(get_class($this))); ?></pre>

Upvotes: 4

Related Questions