PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 4.01.02
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v4.01.02
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
formidable / deprecated / FrmEntryDeprecated.php

FrmEntryDeprecated.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 4.01.02, at deprecated/FrmEntryDeprecated.php

181 lines 4.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * @since 2.03.05
5 * @deprecated 2.03.05
6 * @codeCoverageIgnore
7 */
8 class FrmEntryDeprecated {
9
10 /**
11 * @deprecated 2.03.05
12 */
13 public static function create( $values ) {
14 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::create' );
15
16 return FrmEntry::create( $values );
17 }
18
19 /**
20 * @deprecated 2.03.05
21 */
22 public static function is_duplicate( $new_values, $values ) {
23 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::is_duplicate' );
24
25 return FrmEntry::is_duplicate( $new_values, $values );
26 }
27
28 /**
29 * @deprecated 2.03.05
30 */
31 public static function duplicate( $id ) {
32 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::duplicate' );
33
34 return FrmEntry::duplicate( $id );
35 }
36
37 /**
38 * @deprecated 2.03.05
39 */
40 public static function update( $id, $values ) {
41 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::update' );
42
43 return FrmEntry::update( $id, $values );
44 }
45
46 /**
47 * @deprecated 2.03.05
48 */
49 public static function destroy( $id ) {
50 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::destroy' );
51
52 return FrmEntry::destroy( $id );
53 }
54
55 /**
56 * @deprecated 2.03.05
57 */
58 public static function update_form( $id, $value, $form_id ) {
59 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::update_form' );
60
61 return FrmEntry::update_form( $id, $value, $form_id );
62 }
63
64 /**
65 * @deprecated 2.03.05
66 */
67 public static function clear_cache() {
68 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::clear_cache' );
69
70 FrmEntry::clear_cache();
71 }
72
73 /**
74 * @deprecated 2.03.05
75 */
76 public static function get_new_entry_name( $values, $default = '' ) {
77 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::get_new_entry_name' );
78
79 return FrmEntry::get_new_entry_name( $values, $default );
80 }
81
82 /**
83 * @deprecated 2.03.05
84 */
85 public static function maybe_get_entry( &$entry ) {
86 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::maybe_get_entry' );
87
88 FrmEntry::maybe_get_entry( $entry );
89 }
90
91 /**
92 * @deprecated 2.03.05
93 */
94 public static function getOne( $id, $meta = false ) {
95 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::getOne' );
96
97 return FrmEntry::getOne( $id, $meta );
98 }
99
100 /**
101 * @deprecated 2.03.05
102 */
103 public static function get_meta( $entry ) {
104 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::get_meta' );
105
106 return FrmEntry::get_meta( $entry );
107 }
108
109 /**
110 * @deprecated 2.03.05
111 */
112 public static function exists( $id ) {
113 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::exists' );
114
115 return FrmEntry::exists( $id );
116 }
117
118 /**
119 * @deprecated 2.03.05
120 */
121 public static function getAll( $where, $order_by = '', $limit = '', $meta = false, $inc_form = true ) {
122 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::getAll' );
123
124 return FrmEntry::getAll( $where, $order_by, $limit, $meta, $inc_form );
125 }
126
127 /**
128 * @deprecated 2.03.05
129 */
130 public static function getRecordCount( $where = '' ) {
131 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::getRecordCount' );
132
133 return FrmEntry::getRecordCount( $where );
134 }
135
136 /**
137 * @deprecated 2.03.05
138 */
139 public static function getPageCount( $p_size, $where = '' ) {
140 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::getPageCount' );
141
142 return FrmEntry::getPageCount( $p_size, $where );
143 }
144
145 /**
146 * @deprecated 2.03.05
147 */
148 public static function sanitize_entry_post( &$values ) {
149 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::sanitize_entry_post' );
150
151 FrmEntry::sanitize_entry_post( $values );
152 }
153
154 /**
155 * @deprecated 2.03.05
156 */
157 public static function create_entry_from_xml( $values ) {
158 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::create_entry_from_xml' );
159
160 return FrmEntry::create_entry_from_xml( $values );
161 }
162
163 /**
164 * @deprecated 2.03.05
165 */
166 public static function update_entry_from_xml( $id, $values ) {
167 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::update_entry_from_xml ' );
168
169 return FrmEntry::update_entry_from_xml( $id, $values );
170 }
171
172 /**
173 * @deprecated 2.03.05
174 */
175 public static function get_id_by_key( $key ) {
176 _deprecated_function( __FUNCTION__, '2.03.05', 'FrmEntry::get_id_by_key' );
177
178 return FrmEntry::get_id_by_key( $key );
179 }
180 }
181