shouldAskToCreateBillingAgreement()) { if (Mage::getModel('sales/billing_agreement')->needToCreateForCustomer($customerId)) { self::$_shouldAskToCreateBillingAgreement = true; } } } return self::$_shouldAskToCreateBillingAgreement; } /** * Return backend config for element like JSON * * @param Varien_Data_Form_Element_Abstract $element * @return string */ public function getElementBackendConfig(Varien_Data_Form_Element_Abstract $element) { $config = $element->getFieldConfig()->backend_congif; if (!$config) { return false; } $config = $config->asCanonicalArray(); if (isset($config['enable_for_countries'])) { $config['enable_for_countries'] = explode(',', str_replace(' ', '', $config['enable_for_countries'])); } if (isset($config['disable_for_countries'])) { $config['disable_for_countries'] = explode(',', str_replace(' ', '', $config['disable_for_countries'])); } return Mage::helper('core')->jsonEncode($config); } /** * Get selected merchant country code in system configuration * * @return string */ public function getConfigurationCountryCode() { $requestParam = Mage_Paypal_Block_Adminhtml_System_Config_Field_Country::REQUEST_PARAM_COUNTRY; $countryCode = Mage::app()->getRequest()->getParam($requestParam); if (is_null($countryCode) || preg_match('/^[a-zA-Z]{2}$/', $countryCode) == 0) { $countryCode = (string)Mage::getSingleton('adminhtml/config_data') ->getConfigDataValue(self::MERCHANT_COUNTRY_CONFIG_PATH); } if (empty($countryCode)) { $countryCode = Mage::helper('core')->getDefaultCountry(); } return $countryCode; } /** * Get HTML representation of transaction id * * @param string $methodCode * @param string $txnId * @return string */ public function getHtmlTransactionId($methodCode, $txnId) { if (in_array($methodCode, array( Mage_Paypal_Model_Config::METHOD_WPP_DIRECT, Mage_Paypal_Model_Config::METHOD_WPP_EXPRESS, Mage_Paypal_Model_Config::METHOD_HOSTEDPRO, Mage_Paypal_Model_Config::METHOD_WPS, ))) { /** @var Mage_Paypal_Model_Config $config */ $config = Mage::getModel('paypal/config')->setMethod($methodCode); $url = 'https://www.' . ($config->sandboxFlag ? 'sandbox.' : '') . 'paypal.com/cgi-bin/webscr?cmd=_view-a-trans&id=' . $txnId; return '' . $txnId . ''; } return $txnId; } }