PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4
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/models/FrmDb.php +25 -4 6.35.4 View file →
@@ -231,9 +231,9 @@
231 231 * @param string $type
232 232 *
233 233 * @return string
234 234 */
235 - public static function generate_cache_key( $where, $args, $field, $type ) {
235 + private static function generate_cache_key( $where, $args, $field, $type ) {
236 236 $cache_key = '';
237 237 $where = FrmAppHelper::array_flatten( $where );
238 238 foreach ( $where as $key => $value ) {
239 239 $cache_key .= $key . '_' . $value;
@@ -622,11 +622,8 @@
622 622 *
623 623 * Used when saving form actions and styles
624 624 *
625 625 * @since 2.05.06
626 - *
627 - * @param array $settings
628 - * @return int|WP_Error
629 626 */
630 627 public static function save_json_post( $settings ) {
631 628 global $wp_filter;
632 629 if ( isset( $wp_filter['content_save_pre'] ) ) {
@@ -739,6 +736,30 @@
739 736 }
740 737
741 738 wp_cache_delete( 'cached_keys', $group );
742 739 }
740 + }
741 +
742 + /**
743 + * @deprecated 2.05.06
744 + * @codeCoverageIgnore
745 + */
746 + public function upgrade() {
747 + FrmDeprecated::upgrade();
748 + }
749 +
750 + /**
751 + * @deprecated 2.05.06
752 + * @codeCoverageIgnore
753 + */
754 + public function collation() {
755 + return FrmDeprecated::collation();
756 + }
757 +
758 + /**
759 + * @deprecated 2.05.06
760 + * @codeCoverageIgnore
761 + */
762 + public function uninstall() {
763 + FrmDeprecated::uninstall();
743 764 }
744 765 }