• Модуль: documentgenerator
  • Путь к файлу: ~/bitrix/modules/documentgenerator/lib/body.php
  • Класс: BitrixDocumentGeneratorBody
  • Вызов: Body::getModifierFromPlaceholder
static function getModifierFromPlaceholder(string $placeholder): string
{
	if(preg_match(static::$valuesPattern, $placeholder, $matches))
	{
		return $matches[3] ?? '';
	}

	return '';
}