Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/iubenda/module-cookiesolution/Model/Config/Source/
Upload File :
Current File : //home/rtorresani/www/vendor/iubenda/module-cookiesolution/Model/Config/Source/Radiobtn.php

<?php
namespace Iubenda\CookieSolution\Model\Config\Source;

use Magento\Framework\Data\OptionSourceInterface;

class Radiobtn implements OptionSourceInterface
{
    /**
     * The primary engine
     *
     * @var int
     */
    const ENGINE_PRIMARY = 1;

    /**
     * The secondary engine
     *
     * @var int
     */
    const ENGINE_SECONDARY = 2;

    /**
     * Parser selector data.
     *
     * @return array
     */
    public function toOptionArray()
    {
        return [
            [
                'value'     => static::ENGINE_PRIMARY,
                'label'     => 'Primary',
            ],
        ];
    }
}