I'm having trouble figuring out how to create a helper class with a function in it that's available to *.phtml files.
Can someone describe step by step how I can make the function prtHelloWorld() available to all my *.phtml files?
|
|
|
it's rather simple and you have to call your helper from template like this:
Default helper class is Data and this defaults to Yourmodule/Helper/Data.php
|
|||||
|
|
To add to Anton S's, if you want to be able to access the helper's function using $this->prtHelloWorld() in the phtml instead, add it to your Block like this: public function prtHelloWorld() { return Mage::helper(whatever)->prtHelloWorld(); } |
|||
|
|