I would like to understand when (and why) should I use <action method="insert">...</action> instead of using <block type="... />.
Example: move cart sidebar from left to right column :
1/
<reference name="left">
<action method="unsetChild">
<blockName>cart_sidebar</blockName>
</action>
</reference>
2.1/
<reference name="right">
<block type="checkout/cart_sidebar" name="cart_sidebar" tempalte="checkout/cart/sidebar.phtml" />
</reference>
2.2/
<reference name="right">
<action method="insert">
<blockName>cart_sidebar</blockName>
</action>
</reference>
2.1 or 2.2 ?
Thanks