• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/block.php
  • Класс: BitrixLandingBlock
  • Вызов: Block::getCardContent
public function getCardContent($selector, $position)
{
	if (!is_string($selector))
	{
		return '';
	}

	$doc = $this->getDom();
	$position = intval($position);
	$resultList = $doc->querySelectorAll($selector);
	if (isset($resultList[$position]))
	{
		return $resultList[$position]->getOuterHtml();
	}

	return null;
}