| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/boutiques/app/code/core/Mage/Payment/Model/ |
Upload File : |
<?php
/**
* Magento
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/osl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@magentocommerce.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade Magento to newer
* versions in the future. If you wish to customize Magento for your
* needs please refer to http://www.magentocommerce.com for more information.
*
* @category Mage
* @package Mage_Payment
* @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/
/**
* Payment configuration model
*
* Used for retrieving configuration data by payment models
*
* @category Mage
* @package Mage_Payment
* @author Magento Core Team <core@magentocommerce.com>
*/
class Mage_Payment_Model_Config
{
protected static $_methods;
/**
* Retrieve active system payments
*
* @param mixed $store
* @return array
*/
public function getActiveMethods($store=null)
{
$methods = array();
$config = Mage::getStoreConfig('payment', $store);
foreach ($config as $code => $methodConfig) {
if (Mage::getStoreConfigFlag('payment/'.$code.'/active', $store)) {
$methods[$code] = $this->_getMethod($code, $methodConfig);
}
}
return $methods;
}
/**
* Retrieve all system payments
*
* @param mixed $store
* @return array
*/
public function getAllMethods($store=null)
{
$methods = array();
$config = Mage::getStoreConfig('payment', $store);
foreach ($config as $code => $methodConfig) {
$methods[$code] = $this->_getMethod($code, $methodConfig);
}
return $methods;
}
protected function _getMethod($code, $config, $store=null)
{
if (isset(self::$_methods[$code])) {
return self::$_methods[$code];
}
$modelName = $config['model'];
$method = Mage::getModel($modelName);
$method->setId($code)->setStore($store);
self::$_methods[$code] = $method;
return self::$_methods[$code];
}
/**
* Retrieve array of credit card types
*
* @return array
*/
public function getCcTypes()
{
$_types = Mage::getConfig()->getNode('global/payment/cc/types')->asArray();
uasort($_types, array('Mage_Payment_Model_Config', 'compareCcTypes'));
$types = array();
foreach ($_types as $data) {
if (isset($data['code']) && isset($data['name'])) {
$types[$data['code']] = $data['name'];
}
}
return $types;
}
/**
* Retrieve list of months translation
*
* @return array
*/
public function getMonths()
{
$data = Mage::app()->getLocale()->getTranslationList('month');
foreach ($data as $key => $value) {
$monthNum = ($key < 10) ? '0'.$key : $key;
$data[$key] = $monthNum . ' - ' . $value;
}
return $data;
}
/**
* Retrieve array of available years
*
* @return array
*/
public function getYears()
{
$years = array();
$first = date("Y");
for ($index=0; $index <= 10; $index++) {
$year = $first + $index;
$years[$year] = $year;
}
return $years;
}
/**
* Statis Method for compare sort order of CC Types
*
* @param array $a
* @param array $b
* @return int
*/
static function compareCcTypes($a, $b)
{
if (!isset($a['order'])) {
$a['order'] = 0;
}
if (!isset($b['order'])) {
$b['order'] = 0;
}
if ($a['order'] == $b['order']) {
return 0;
} else if ($a['order'] > $b['order']) {
return 1;
} else {
return -1;
}
}
}