i'm trying to add block to the admin order view page in magento
my layout update is
<?xml version="1.0"?>
<layout>
<adminhtml_sales_order_view>
<reference name="order_tab_info">
<block before="order_tab_info" type='vendor/additonal' name="ama_additonal_data" template="vendor/additonal.phtml" >
<action method="setChild">
<name>order_info</name>
<block>order_info</block>
</action>
</block>
<action method="setChild">
<name>order_info</name>
<block>ama_additonal_data</block>
</action>
</reference>
</adminhtml_sales_order_view>
</layout>
my block is
class Vendor_ModuleName_Block_Sales_Order_View_AdditonalData extends Mage_Adminhtml_Block_Sales_Order_Abstract{
}
if i make the following in the block file
public function __construct(){
var_dump('hey');
die;
}
the page stops for showing that but it looks that my block doesn't render
why?