<?php/*------------------------------------------------------------------------# SM Mega Menu - Version 3.2.0# Copyright (c) 2015 YouTech Company. All Rights Reserved.# @license - Copyrighted Commercial Software# Author: YouTech Company# Websites: http://www.magentech.com-------------------------------------------------------------------------*/namespaceSm\MegaMenu\Model\Config\Source;classListThemeimplements\Magento\Framework\Option\ArrayInterface{constHORIZONTAL=1;constVERTICAL=2;publicfunctiongetOptionArray(){return[self::HORIZONTAL=>__('Horizontal'),self::VERTICAL=>__('Vertical'),];}publicfunctiontoOptionArray(){return[['value'=>self::HORIZONTAL,'label'=>__('Horizontal'),],['value'=>self::VERTICAL,'label'=>__('Vertical'),],];}}