Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/admin/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/exchange/integration/admin/factory.php

<?php
namespace Bitrix\Sale\Exchange\Integration\Admin;

class Factory
{

	static public function create($type)
	{
		if($type == ModeType::DEFAULT_TYPE)
		{
			return new DefaultLink();
		}
		elseif ($type == ModeType::APP_LAYOUT_TYPE)
		{
			return new AppLayoutLink();
		}
		else
		{
			throw new \Bitrix\Main\NotSupportedException("Mode type: '".$type."' is not supported in current context");
		}
	}
}