<?php

namespace Autogedal\Retur\Ui\Component\Listing\Column\Status;

use Magento\Framework\Data\OptionSourceInterface;

/**
 * Class Options for Listing Column Status
 */
class Options implements OptionSourceInterface
{
    /**
     * @var array
     */
    protected $options = [
        0 => [
            "value" => 0,
            "label" => "NOU"
        ],
        1 => [
            "value" => 1,
            "label" => "In Livrare"
        ],
        2 => [
            "value" => 2,
            "label" => "Solutionat cu Discount"
        ],
        3 => [
            "value" => 3,
            "label" => "Acceptat"
        ],
        4 => [
            "value" => 4,
            "label" => "Respins"
        ],
        5 => [
            "value" => 5,
            "label" => "Stornat"
        ],
        6 => [
            "value" => 6,
            "label" => "Platit"
        ],
        7 => [
            "value" => 7,
            "label" => "Finalizat"
        ],
        8 => [
            "value" => 8,
            "label" => "Anulat"
        ]
    ];

    /**
     * Get options
     *
     * @return array
     */
    public function toOptionArray()
    {
        return $this->options;
    }
}
