00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 class Mage_Payment_Helper_Data extends Mage_Core_Helper_Abstract
00033 {
00034 const XML_PATH_PAYMENT_METHODS = 'payment';
00035
00036
00037
00038
00039
00040
00041
00042 public function getMethodInstance($code)
00043 {
00044 $key = self::XML_PATH_PAYMENT_METHODS.'/'.$code.'/model';
00045 $class = Mage::getStoreConfig($key);
00046 if (!$class) {
00047 Mage::throwException($this->__('Can not configuration for payment method with code: %s', $code));
00048 }
00049 return Mage::getModel($class);
00050 }
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061 public function getStoreMethods($store=null, $quote=null)
00062 {
00063 $methods = Mage::getStoreConfig(self::XML_PATH_PAYMENT_METHODS, $store);
00064 $res = array();
00065 foreach ($methods as $code => $methodConfig) {
00066 $prefix = self::XML_PATH_PAYMENT_METHODS.'/'.$code.'/';
00067
00068 if (!Mage::getStoreConfigFlag($prefix.'active', $store)) {
00069 continue;
00070 }
00071 if (!$model = Mage::getStoreConfig($prefix.'model', $store)) {
00072 continue;
00073 }
00074
00075 $methodInstance = Mage::getModel($model);
00076
00077 if ($methodInstance instanceof Mage_Payment_Model_Method_Cc && !Mage::getStoreConfig($prefix.'cctypes')) {
00078
00079
00080 continue;
00081 }
00082
00083 if ( !$methodInstance->isAvailable($quote) ) {
00084
00085 continue;
00086 }
00087
00088 $sortOrder = (int)Mage::getStoreConfig($prefix.'sort_order', $store);
00089 $methodInstance->setSortOrder($sortOrder);
00090 $methodInstance->setStore($store);
00091
00092
00093
00094
00095 $res[] = $methodInstance;
00096 }
00097
00098
00099
00100
00101
00102 usort($res, array($this, '_sortMethods'));
00103
00104
00105 return $res;
00106 }
00107
00108 protected function _sortMethods($a, $b)
00109 {
00110
00111 if (is_object($a)) {
00112
00113
00114
00115
00116 return (int)$a->sort_order < (int)$b->sort_order ? -1 : ((int)$a->sort_order > (int)$b->sort_order ? 1 : 0);
00117 }
00118 return 0;
00119 }
00120
00121
00122
00123
00124
00125
00126
00127 public function getMethodFormBlock(Mage_Payment_Model_Method_Abstract $method)
00128 {
00129 $block = false;
00130 $blockType = $method->getFormBlockType();
00131 if ($this->getLayout()) {
00132 $block = $this->getLayout()->createBlock($blockType);
00133 $block->setMethod($method);
00134 }
00135 return $block;
00136 }
00137
00138
00139
00140
00141
00142
00143
00144 public function getInfoBlock(Mage_Payment_Model_Info $info)
00145 {
00146 $blockType = $info->getMethodInstance()->getInfoBlockType();
00147 if ($this->getLayout()) {
00148 $block = $this->getLayout()->createBlock($blockType);
00149 }
00150 else {
00151 $className = Mage::getConfig()->getBlockClassName($blockType);
00152 $block = new $className;
00153 }
00154 $block->setInfo($info);
00155 return $block;
00156 }
00157 }