mygento/yandexdelivery

View on GitHub
app/code/local/Mygento/Yandexdelivery/Model/Source/Payment.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 *
 *
 * @category Mygento
 * @package Mygento_Yandexdelivery
 * @copyright 2017 NKS LLC. (http://www.mygento.ru)
 * @license GPLv2
 */
class Mygento_Yandexdelivery_Model_Source_Payment
{

    public function toOptionArray()
    {
        return [
                ['value' => 1, 'label' => Mage::helper('yandexdelivery')->__('Cash')],
                ['value' => 3, 'label' => Mage::helper('yandexdelivery')->__('Pre-paid')],
        ];
    }
}