- Модуль: salescenter
- Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/immanager.php
- Класс: BitrixSalesCenterIntegrationImManager
- Вызов: ImManager::getAppLangInfo
static function getAppLangInfo($command, $lang = null)
{
$title = Loc::getMessage('SALESCENTER_APP_TITLE', null, $lang);
$description = Loc::getMessage('SALESCENTER_APP_DESCRIPTION', null, $lang);
$result = false;
if($title <> '')
{
$result = [
'TITLE' => $title,
'DESCRIPTION' => $description,
'COPYRIGHT' => ''
];
}
return $result;
}