• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/classes/general/editor_utils.php
  • Класс: CEditorUtils
  • Вызов: CEditorUtils::GetCSS
static function GetCSS($startCount)
{
	global $APPLICATION;
	$arCSS = array();
	$res = '';
	$curCount = count($APPLICATION->sPath2css);
	if ($curCount <= $startCount)
		return;

	for ($i = $startCount; $i < $curCount; $i++)
	{
		$path = $APPLICATION->sPath2css[$i];
		if (!in_array($path, $arCSS))
			$arCSS[] = $path;
	}

	echo "';
}