| Current Path : /home/rtorresani/www/vendor/iubenda/module-cookiesolution/Model/Config/Source/ |
| 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',
],
];
}
}