PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.0
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.0
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmEntriesController.php +16 -0 6.46.0 View file →
@@ -704,5 +704,21 @@
704 704 public static function contextual_help( $help, $screen_id, $screen ) {
705 705 _deprecated_function( __METHOD__, '4.0' );
706 706 return $help;
707 707 }
708 +
709 + /**
710 + * @deprecated 1.07.05
711 + * @codeCoverageIgnore
712 + */
713 + public static function show_form( $id = '', $key = '', $title = false, $description = false ) {
714 + return FrmDeprecated::show_form( $id, $key, $title, $description );
715 + }
716 +
717 + /**
718 + * @deprecated 1.07.05
719 + * @codeCoverageIgnore
720 + */
721 + public static function get_form( $filename, $form, $title, $description ) {
722 + return FrmDeprecated::get_form( $filename, $form, $title, $description );
723 + }
708 724 }