Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/vendor/magento/module-downloadable/Model/Source/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-downloadable/Model/Source/TypeUpload.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
namespace Magento\Downloadable\Model\Source;

/**
 * TypeUpload source class
 */
class TypeUpload implements \Magento\Framework\Data\OptionSourceInterface
{
    /**
     * {@inheritdoc}
     */
    public function toOptionArray()
    {
        return [
            ['value' => 'file', 'label' => __('Upload File')],
            ['value' => 'url', 'label' => __('URL')],
        ];
    }
}