ListMegaMenu.php 1.19 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
<?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
-------------------------------------------------------------------------*/
namespace Sm\MegaMenu\Model\Config\Source;

use Sm\MegaMenu\Model\MenuGroup;
use Magento\Framework\Option\ArrayInterface;

class ListMegaMenu implements ArrayInterface
{
	protected $_menuGroup;

	public function __construct(
		MenuGroup $menuGroup
	)
	{
		$this->_menuGroup = $menuGroup;
	}
	
	public function getOptionArray(){
		foreach ($this->_menuGroup->getCollection() as $group)
		{
			$arr[$group ->getTitle()] = $group ->getTitle();
		}
		return $arr;
	}
	public function toOptionArray(){
		$arr[] = array(
			'value'			=>	'',
			'label'     	=>	__('--Please Select--'),
		);
		foreach ($this->_menuGroup->getCollection() as $group)
		{
			$label = '('.$group->getId().') ' . $group->getTitle();
			$arr[] = array(
				'value'		=>	$group->getId(),
				'label'     => 	$label,
			);
		}
		return $arr;
	}
}