Skip to content
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.

Commit

Permalink
Added one more missing module file
Browse files Browse the repository at this point in the history
  • Loading branch information
Lmbrtz committed Nov 26, 2015
1 parent ab74572 commit fffaa2f
Showing 1 changed file with 42 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php
/**
* Webshopapps Shipping Module
*
* 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 [email protected] 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.
*
* Shipping MatrixRates
*
* @category Webshopapps
* @package Webshopapps_Matrixrate
* @copyright Copyright (c) 2010 Zowta Ltd (http://www.webshopapps.com)
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @author Karen Baker <[email protected]>
*/

class Webshopapps_Matrixrate_Model_Adminhtml_System_Config_Source_Shipping_Matrixrate
{
public function toOptionArray()
{

$tableRate = Mage::getSingleton('matrixrate_shipping/carrier_matrixrate');
$arr = array();
foreach ($tableRate->getCode('condition_name') as $k=>$v) {
$arr[] = array('value'=>$k, 'label'=>$v);
}
return $arr;
}
}

0 comments on commit fffaa2f

Please sign in to comment.