<?php
namespace Autogedal\Banners\Model\Config\Product;

class Positions implements \Magento\Framework\Option\ArrayInterface
{
    public function toOptionArray()
    {
        return [
                ['value' => '', 'label' => __('Select position')],
                ['value' => 1, 'label' => __('Category - Sidebar - Badges Section')],
                ['value' => 2, 'label' => __('Product - Description')],
                ['value' => 3, 'label' => __('Product - FBT')],
                ['value' => 4, 'label'  => __('Product - Between Sections')],
                ['value' => 5, 'label' => __('Elemente grafice')],
                ['value' => 6, 'label' => __('Product - Frecvent Cumparate Impreuna')],
        ];
    }

    public function toArray()
    {
        return $this->toOptionArray();
    }
}
