• Модуль: learning
  • Путь к файлу: ~/bitrix/modules/learning/classes/general/clearncacheoflessontreecomponent.php
  • Класс: CLearnCacheOfLessonTreeComponent
  • Вызов: CLearnCacheOfLessonTreeComponent::GetDataWoCache
static function GetDataWoCache($courseId)
{
	$rsContent = CCourse::GetCourseContent(
		$courseId, 
		array(), 
		array('LESSON_ID', 'NAME')
		);

	$arContents = array();
	while ($arContent = $rsContent->GetNext())
		$arContents[] = $arContent;

	return ($arContents);
}