This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 deletions.
There are no files selected for viewing
42 changes: 42 additions & 0 deletions
42
...unity/Webshopapps/Matrixrate/Model/Adminhtml/System/Config/Source/Shipping/Matrixrate.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |