• Модуль: learning
  • Путь к файлу: ~/bitrix/modules/learning/classes/general/export.php
  • Класс: CCoursePackage
  • Вызов: CCoursePackage::CreateManifest
function CreateManifest()
{
	global $DB;

	if ($this->LAST_ERROR <> '')
		return false;

	$this->createQuestionItems($this->arCourse["LESSON_ID"]);

	$strManifest = "<"."?xml version="1.0" encoding="".$this->charset.""?".">n";
	$strManifest .= '';
	//
	$strManifest .= '';
	$strManifest .= ''.htmlspecialcharsbx($this->arCourse["NAME"]).'';
	$strManifest .= $this->strItems;
	$strManifest .= '';
	$strManifest .= '';
	//
	$strManifest .= ''.$this->_GetResourceFiles(1).'';
	$strManifest .= $this->strResourses;
	$strManifest .= '';
	$strManifest .= '';

	return $strManifest;
}