*/ class Mage_Sales_Block_Billing_Agreements extends Mage_Core_Block_Template { /** * Payment methods array * * @var array */ protected $_paymentMethods = array(); /** * Billing agreements collection * * @var Mage_Sales_Model_Mysql4_Billing_Agreement_Collection */ protected $_billingAgreements = null; /** * Set Billing Agreement instance * * @return Mage_Core_Block_Abstract */ protected function _prepareLayout() { parent::_prepareLayout(); $pager = $this->getLayout()->createBlock('page/html_pager') ->setCollection($this->getBillingAgreements())->setIsOutputRequired(false); $this->setChild('pager', $pager) ->setBackUrl($this->getUrl('customer/account/')); $this->getBillingAgreements()->load(); return $this; } /** * Retrieve billing agreements collection * * @return Mage_Sales_Model_Mysql4_Billing_Agreement_Collection */ public function getBillingAgreements() { if (is_null($this->_billingAgreements)) { $this->_billingAgreements = Mage::getResourceModel('sales/billing_agreement_collection') ->addFieldToFilter('customer_id', Mage::getSingleton('customer/session')->getCustomerId()) ->setOrder('agreement_id', 'desc'); } return $this->_billingAgreements; } /** * Retrieve item value by key * * @param Varien_Object $item * @param string $key * @return mixed */ public function getItemValue(Mage_Sales_Model_Billing_Agreement $item, $key) { switch ($key) { case 'created_at': case 'updated_at': $value = ($item->getData($key)) ? $this->helper('core')->formatDate($item->getData($key), 'short', true) : $this->__('N/A'); break; case 'edit_url': $value = $this->getUrl('*/billing_agreement/view', array('agreement' => $item->getAgreementId())); break; case 'payment_method_label': $label = $item->getAgreementLabel(); $value = ($label) ? $label : $this->__('N/A'); break; case 'status': $value = $item->getStatusLabel(); break; default: $value = ($item->getData($key)) ? $item->getData($key) : $this->__('N/A'); } return $this->escapeHtml($value); } /** * Load available billing agreement methods * * @return array */ protected function _loadPaymentMethods() { if (!$this->_paymentMethods) { foreach ($this->helper('payment')->getBillingAgreementMethods() as $paymentMethod) { $this->_paymentMethods[$paymentMethod->getCode()] = $paymentMethod->getTitle(); } } return $this->_paymentMethods; } /** * Retrieve wizard payment options array * * @return array */ public function getWizardPaymentMethodOptions() { $paymentMethodOptions = array(); foreach ($this->helper('payment')->getBillingAgreementMethods() as $paymentMethod) { if ($paymentMethod->getConfigData('allow_billing_agreement_wizard') == 1) { $paymentMethodOptions[$paymentMethod->getCode()] = $paymentMethod->getTitle(); } } return $paymentMethodOptions; } /** * Set data to block * * @return string */ protected function _toHtml() { $this->setCreateUrl($this->getUrl('*/billing_agreement/startWizard')); return parent::_toHtml(); } }