jruzafa
8/7/2014 - 2:20 PM

CartController.php

<config>
    <!-- Your/Ext/etc/config.xml -->
    <frontend>
        <routers>
            <checkout>
                <args>
                    <modules>
                        <your_ext after="Mage_Checkout">Your_Ext_Checkout</your_ext>
                    </modules>
                </args>
            </checkout>
        </routers>
    </frontend>
</config>
<?php

// Your/Ext/controllers/Checkout/CartController.php
class Your_Ext_Checkout_CartController extends Mage_Checkout_CartController
{
    public function yourNewAction()
    {
    }
}