• Модуль: translate
  • Путь к файлу: ~/bitrix/modules/translate/lib/controller/editor/wipeempty.php
  • Класс: BitrixTranslateControllerEditorWipeEmpty
  • Вызов: WipeEmpty::removeEmptyParents
private function removeEmptyParents($langFullPath): bool
{
	try
	{
		$langFile = TranslateFile::instantiateByPath($langFullPath);
		if ($langFile instanceof TranslateFile)
		{
			return $langFile->removeEmptyParents();
		}
	}
	catch (MainArgumentException $ex)
	{
	}

	return false;
}