PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.5
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.5
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/FrmFieldsController.php +20 -1 6.3.15.5 View file →
@@ -878,9 +878,12 @@
878 878 *
879 879 * @deprecated 4.0 Moved to Pro for Other option only.
880 880 */
881 881 public static function add_option() {
882 - _deprecated_function( __METHOD__, '4.0', 'FrmProFieldsController::add_other_option' );
882 + _deprecated_function( __METHOD__, '4.0', 'FrmProFormsController::add_other_option' );
883 + if ( is_callable( 'FrmProFormsController::add_other_option' ) ) {
884 + FrmProFormsController::add_other_option();
885 + }
883 886 }
884 887
885 888 /**
886 889 * @deprecated 4.0
@@ -908,6 +911,22 @@
908 911 * @return array
909 912 */
910 913 public static function include_single_field( $field_id, $values, $form_id = 0 ) {
911 914 return FrmDeprecated::include_single_field( $field_id, $values, $form_id );
915 + }
916 +
917 + /**
918 + * @deprecated 2.3
919 + * @codeCoverageIgnore
920 + */
921 + public static function edit_option() {
922 + FrmDeprecated::deprecated( __METHOD__, '2.3' );
923 + }
924 +
925 + /**
926 + * @deprecated 2.3
927 + * @codeCoverageIgnore
928 + */
929 + public static function delete_option() {
930 + FrmDeprecated::deprecated( __METHOD__, '2.3' );
912 931 }
913 932 }