public static function textarea_display_value(&$value, $type, $plain_text)
 {
     _deprecated_function(__FUNCTION__, '2.0.9', 'FrmEntryFormat::textarea_display_value');
     FrmEntryFormat::textarea_display_value($type, $plain_text, $value);
 }
 public static function &filter_shortcode_value($value, $tag, $atts, $field)
 {
     $plain_text = add_filter('frm_plain_text_email', true);
     FrmEntryFormat::textarea_display_value($field->type, $plain_text, $value);
     if (isset($atts['show']) && $atts['show'] == 'value') {
         return $value;
     }
     return self::filter_display_value($value, $field, $atts);
 }