• Модуль: main
  • Путь к файлу: ~/bitrix/modules/main/classes/general/mp_notifications.php
  • Класс: CMpNotifications
  • Вызов: CMpNotifications::getClientInstalledModules
static function getClientInstalledModules(){
	$strError_tmp = "";
	$arRequestedModules = array();
	$arClientModules = CUpdateClientPartner::GetCurrentModules($strError_tmp);
	if ($strError_tmp == '')
	{
		if (!empty($arClientModules))
		{
			foreach ($arClientModules as $key => $value)
			{
				if (strpos($key, ".") !== false)
				{
					$arRequestedModules[] = $key;
				}
			}
			return $arRequestedModules;
		}
	}
	return false;
}