• Модуль: fileman
  • Путь к файлу: ~/bitrix/modules/fileman/lib/block/content/engine.php
  • Класс: BitrixFilemanBlockContentEngine
  • Вызов: Engine::createBlockContent
static function createBlockContent($string)
{
	foreach (self::getConverters() as $converter)
	{
		if ($converter::isValid($string))
		{
			return $converter::toArray($string);
		}
	}

	throw new SystemException('Wrong content type.');
}