本文整理汇总了PHP中Mage_Payment_Model_Method_Abstract::getMethod方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Payment_Model_Method_Abstract::getMethod方法的具体用法?PHP Mage_Payment_Model_Method_Abstract::getMethod怎么用?PHP Mage_Payment_Model_Method_Abstract::getMethod使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Payment_Model_Method_Abstract
的用法示例。
在下文中一共展示了Mage_Payment_Model_Method_Abstract::getMethod方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getCustomerCpfValue
/**
* Returns customer's CPF based on your module configuration
* @param Mage_Sales_Model_Order $order
* @param Mage_Payment_Model_Method_Abstract $payment
*
* @return mixed
*/
private function _getCustomerCpfValue(Mage_Sales_Model_Order $order, $payment)
{
$customerCpfAttribute = Mage::getStoreConfig('payment/pagseguro/customer_cpf_attribute');
if (empty($customerCpfAttribute)) {
//Asked with payment data
if (isset($payment['additional_information'][$payment->getMethod() . '_cpf'])) {
return $payment['additional_information'][$payment->getMethod() . '_cpf'];
}
}
$entity = explode('|', $customerCpfAttribute);
$cpf = '';
if (count($entity) == 1 || $entity[0] == 'customer') {
if (count($entity) == 2) {
$customerCpfAttribute = $entity[1];
}
$customer = $order->getCustomer();
$cpf = $customer->getData($customerCpfAttribute);
} else {
if (count($entity) == 2 && $entity[0] == 'billing') {
//billing
$cpf = $order->getShippingAddress()->getData($entity[1]);
}
}
$cpfObj = new Varien_Object(array('cpf' => $cpf));
//you can create a module to get customer's CPF from somewhere else
Mage::dispatchEvent('ricardomartins_pagseguro_return_cpf_before', array('order' => $order, 'payment' => $payment, 'cpf_obj' => $cpfObj));
return $cpfObj->getCpf();
}
示例2: _getCustomerCpfValue
/**
* Retorna o CPF do cliente baseado na selecao realizada na configuração do modulo
* @param Mage_Customer_Model_Customer $customer
* @param Mage_Payment_Model_Method_Abstract $payment
*
* @return mixed
*/
private function _getCustomerCpfValue(Mage_Customer_Model_Customer $customer, $payment)
{
$customer_cpf_attribute = Mage::getStoreConfig('payment/pagseguro/customer_cpf_attribute');
if (empty($customer_cpf_attribute)) {
if (isset($payment['additional_information'][$payment->getMethod() . '_cpf'])) {
return $payment['additional_information'][$payment->getMethod() . '_cpf'];
}
}
$cpf = $customer->getResource()->getAttribute($customer_cpf_attribute)->getFrontend()->getValue($customer);
return $cpf;
}