Your IP : 3.142.198.37


Current Path : /home/bitrix/ext_www/easy-comfort.com.ua/bitrix/modules/im/lib/
Upload File :
Current File : /home/bitrix/ext_www/easy-comfort.com.ua/bitrix/modules/im/lib/revision.php

<?php
namespace Bitrix\Im;

class Revision
{
	/**
	 * Web Api revision
	 *
	 * @filesource synchronize im/install/js/im/im.js:17
	 */
	const WEB = 122;
	/**
	 * Mobile Api revision
	 *
	 * @filesource synchronize mobile/install/components/bitrix/mobile.jscomponent/jscomponents/im.recent/component.js:6
	 * @filesource synchronize mobile/install/components/bitrix/mobile.webcomponent/webcomponents/im.dialog/bundle/component/js/component.js:3
	 * @filesource synchronize mobile/install/components/bitrix/mobile.webcomponent/webcomponents/im.dialog/bundle/component/js/mobile_dialog.js:22
	 */
	const MOBILE = 19;

	/**
	 * Rest Api revision
	 */
	const REST = 20;

	public static function getWeb()
	{
		return static::WEB;
	}

	public static function getMobile()
	{
		return static::MOBILE;
	}

	public static function getRest()
	{
		return static::REST;
	}

	public static function get()
	{
		return [
			'rest' => static::getRest(),
			'web' => static::getWeb(),
			'mobile' => static::getMobile(),
		];
	}
}