12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Downloadable\Model\System\Config\Source;
- /**
- * Downloadable Content Disposition Source
- *
- * @author Magento Core Team <core@magentocommerce.com>
- */
- class Contentdisposition implements \Magento\Framework\Option\ArrayInterface
- {
- /**
- * @return array
- */
- public function toOptionArray()
- {
- return [
- ['value' => 'attachment', 'label' => __('attachment')],
- ['value' => 'inline', 'label' => __('inline')]
- ];
- }
- }
|