hasConditions($data) ? 'has-conditions ' : '';
$cls = trim($this->getDefaultContainerClass() . ' ff-' . $elementName . ' ' . $hasConditions);
if ($containerClass = ArrayHelper::get($data, 'settings.container_class')) {
$cls .= ' ' . $containerClass;
}
$atts = $this->buildAttributes(
ArrayHelper::except($data['attributes'], 'name')
);
$html = "
" . fluentform_sanitize_html($data['settings']['html_codes']) . '
'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- $atts is escaped before being passed in.
$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);
}
}