Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/Watermark/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-catalog/Model/Config/Source/Watermark/Position.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/**
 * Watermark position config source model
 *
 * @author      Magento Core Team <core@magentocommerce.com>
 */
namespace Magento\Catalog\Model\Config\Source\Watermark;

class Position implements \Magento\Framework\Option\ArrayInterface
{
    /**
     * Get available options
     *
     * @codeCoverageIgnore
     * @return array
     */
    public function toOptionArray()
    {
        return [
            ['value' => 'stretch', 'label' => __('Stretch')],
            ['value' => 'tile', 'label' => __('Tile')],
            ['value' => 'top-left', 'label' => __('Top/Left')],
            ['value' => 'top-right', 'label' => __('Top/Right')],
            ['value' => 'bottom-left', 'label' => __('Bottom/Left')],
            ['value' => 'bottom-right', 'label' => __('Bottom/Right')],
            ['value' => 'center', 'label' => __('Center')]
        ];
    }
}