| @@ -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 | } |