<?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;classStatusimplements\Magento\Framework\Option\ArrayInterface{constSTATUS_ENABLED=1;constSTATUS_DISABLED=2;publicfunctiongetOptionArray(){return[self::STATUS_ENABLED=>__('Enable'),self::STATUS_DISABLED=>__('Disable')];}publicfunctiontoOptionArray(){return[['value'=>self::STATUS_ENABLED,'label'=>__('Enable'),],['value'=>self::STATUS_DISABLED,'label'=>__('Disable'),]];}}