Set data:
<block type="obishomeaddon/customcategory" name="customcategory" template="homeaddon/customcategory.phtml">
<action method="setData"> <name>column_count</name> <value>4</value> </action>
<action method="setData"> <name>category_id</name> <value>116</value> </action>
</block>
Get data:
class Block extends Mage_Core_Block_Template {
public getColumnCount() {
return $this->getData('column_count');
}
public getCategoryId() {
return $this->getData('category_id');
}
}
But I see Magento can do something like this :
<block type="obishomeaddon/customcategory" column_count="4" category_id="116" name="customcategory" template="homeaddon/customcategory.phtml"/>
How can I set the attribute value from this kind of setting data ?