• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/node.php
  • Класс: BitrixLandingNode
  • Вызов: Node::prepareSearchContent
static function prepareSearchContent($value)
{
	if (is_string($value))
	{
		$value = strip_tags($value);
		$value = preg_replace('/[s]{2,}/', ' ', $value);
		$value = trim($value);
	}

	return $value;
}