__('Google Checkout has been deprecated.')); } /** * Capture payment * * @param Varien_Object $payment * @param float $amount * @throws Exception * @return void */ public function capture(Varien_Object $payment, $amount) { Mage::throwException(Mage::helper('payment')->__('Google Checkout has been deprecated.')); } /** * Refund money * * @param Varien_Object $payment * @param float $amount * @throws Exception * @return void */ public function refund(Varien_Object $payment, $amount) { Mage::throwException(Mage::helper('payment')->__('Google Checkout has been deprecated.')); } /** * @param Varien_Object $payment * @throws Exception * @return void */ public function void(Varien_Object $payment) { Mage::throwException(Mage::helper('payment')->__('Google Checkout has been deprecated.')); } /** * Void payment * * @param Varien_Object $payment * @throws Exception * @return void */ public function cancel(Varien_Object $payment) { Mage::throwException(Mage::helper('payment')->__('Google Checkout has been deprecated.')); } /** * Retrieve information from payment configuration * * @param string $field * @param int|string|null|Mage_Core_Model_Store $storeId * * @return null */ public function getConfigData($field, $storeId = null) { return null; } /** * Check void availability * * @param Varien_Object $payment * @return bool */ public function canVoid(Varien_Object $payment) { return false; } }