hasConditions($data) ? 'has-conditions ' : '';
$cls = trim($this->getDefaultContainerClass() . ' ' . $hasConditions);
$data['attributes']['class'] = $cls . ' ff-el-section-break ' . $data['attributes']['class'];
$data['attributes']['class'] = trim($data['attributes']['class']);
$atts = $this->buildAttributes(
ArrayHelper::except($data['attributes'], 'name')
);
$html = "
"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $atts is escaped before being passed in.
$html .= "
" . fluentform_sanitize_html($data['settings']['label']) . '
';
$html .= "
" . fluentform_sanitize_html($data['settings']['description']) . '
';
$html .= '
';
$html .= '
';
$html = apply_filters_deprecated(
'fluentform_rendering_field_html_' . $elementName,
[
$html,
$data,
$form
],
FLUENTFORM_FRAMEWORK_UPGRADE,
'fluentform/rendering_field_html_' . $elementName,
'Use fluentform/rendering_field_html_' . $elementName . ' instead of fluentform_rendering_field_html_' . $elementName
);
$this->printContent('fluentform/rendering_field_html_' . $elementName, $html, $data, $form);
}
}