[description]';
}
/**
* @since 3.0
*/
protected function after_replace_html_shortcodes( $args, $html ) {
FrmFieldsHelper::run_wpautop( array( 'wpautop' => true ), $html );
$pre_filter = $html;
$html = apply_filters( 'frm_get_default_value', $html, (object) $this->field, false );
if ( $pre_filter === $html ) {
$html = do_shortcode( $html );
}
return $html;
}
public function get_container_class() {
return ' frm_html_container';
}
protected function include_form_builder_file() {
return FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/field-html.php';
}
}