Your IP : 52.14.24.177


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

<?
/**
 * This class is for internal use only, not a part of public API.
 * It can be changed at any time without notification.
 *
 * @access private
 */

namespace Bitrix\Tasks\Integration;

abstract class IM extends \Bitrix\Tasks\Integration
{
	const MODULE_NAME = 'im';

	public static function notifyAdd($message)
	{
		if(!static::includeModule())
		{
			return false;
		}

		return \CIMNotify::Add($message);
	}
}