in the template.phtml file there is a line of code which refers to the content, using getChildHtml('content') ?> which echos out the content and the containing divs, i wish to access this raw code so i can insert some custom data but for the life of me cannot find where it is?! i have found the Mage_Page_Block_Html class in the core but cannot see any html that it is throwing out!

Thanks in advance

link|improve this question
1  
I don't mean to insult so I apologise in advance. That is a really newbie question. You might do well to read some guides first. – clockworkgeek Nov 8 '10 at 14:47
feedback

3 Answers

In the Admin, if you go to System>Config>Advanced>Developer and select your Store View from the Scope Selector (top-left), you can turn on Template and Block hints. That will tell you exactly which PHP Block is generating the code and therefore $this relates to.

Generally, all the basic layout templates are backed by Mage_Core_Block_Template, and all blocks inherit from Mage_Core_Block_Abstract.

Cheers, Jonathan

link|improve this answer
Hi and thankyou, where would the Mage_Core_Block_Abstract be found roughly? – adam Nov 8 '10 at 13:11
The class name translates into it's location. So Mage_Core_Block_Abstract becomes 'app/code/core/Mage/Core/Block/Abstract.php' – clockworkgeek Nov 8 '10 at 14:49
feedback

As always, I recommend understanding what the entire layout system is doing to understand what's going on.

As to your specific question, $this always refers to the template's Block class. (Every phtml template has a Block class in Magento). Which class this is will depend on what's in your layout XML files. You can always output the class at runtime with something like this

var_dump(get_class($this));

The getChildHtml method is defined on the base abstract block class

app/code/core/Mage/Core/Block/Abstract.php

This method is used by ALL blocks, so be sure you take this into account with your code.

link|improve this answer
feedback

as a side note.. if you ever wondering where a $this is point to you can also use

echo get_class($this)

helped me out quiet a few times

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.