Your IP : 3.23.20.156


Current Path : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/modules/crm/lib/
Upload File :
Current File : /home/bitrix/ext_www/crm.klimatlend.ua/bitrix/modules/crm/lib/mapper.php

<?php
namespace Bitrix\Crm;
class Mapper
{
	protected static $stub = null;
	protected $map = null;

	public function __construct(array $map = null)
	{
		if($map !== null)
		{
			$this->map = $map;
		}
	}

	public function getMapping($name)
	{
		return ($this->map !== null && isset($this->map[$name])) ? $this->map[$name] : $name;
	}
	public static function stub()
	{
		if(self::$stub === null)
		{
			self::$stub = new Mapper();
		}
		return self::$stub;
	}
}