• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/fields/base.php
  • Класс: BitrixReportVisualConstructorFieldsBase
  • Вызов: Base::getRenderedInlineStyle
public function getRenderedInlineStyle()
{
	$inlineStyles = $this->getInlineStyle();
	$result = '';
	if ($inlineStyles)
	{
		$result = 'style="';
		foreach ($inlineStyles as $key => $value)
		{
			$result .= ' ' . $key . ': ' . $value .  ';';
		}
		$result .= '"';
	}

	return $result;
}