| Current Path : /home/rtorresani/www/vendor/mageplaza/module-core/Model/Config/Source/ |
| Current File : //home/rtorresani/www/vendor/mageplaza/module-core/Model/Config/Source/AbstractSource.php |
<?php
/**
* Mageplaza
*
* NOTICE OF LICENSE
*
* This source file is subject to the mageplaza.com license that is
* available through the world-wide-web at this URL:
* https://www.mageplaza.com/LICENSE.txt
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category Mageplaza
* @package Mageplaza_Core
* @copyright Copyright (c) Mageplaza (https://www.mageplaza.com/)
* @license https://www.mageplaza.com/LICENSE.txt
*/
namespace Mageplaza\Core\Model\Config\Source;
use Magento\Framework\Option\ArrayInterface;
/**
* Class AbstractSource
* @package Mageplaza\Core\Model\Config\Source
*/
abstract class AbstractSource implements ArrayInterface
{
/**
* Options getter
*
* @return array
*/
public function toOptionArray()
{
$options = [];
foreach ($this->toArray() as $value => $label) {
$options[] = compact('value', 'label');
}
return $options;
}
/**
* Get options in "key-value" format
*
* @return array
*/
abstract public function toArray();
}