@@ -1,109 +1,109 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | class FrmFormActionsController { |
4 | - public static $action_post_type = 'frm_form_actions'; |
|
5 | - public static $registered_actions; |
|
6 | - |
|
7 | - public static function register_post_types() { |
|
8 | - register_post_type( self::$action_post_type, array( |
|
9 | - 'label' => __( 'Form Actions', 'formidable' ), |
|
10 | - 'description' => '', |
|
11 | - 'public' => false, |
|
12 | - 'show_ui' => false, |
|
13 | - 'exclude_from_search' => true, |
|
14 | - 'show_in_nav_menus' => false, |
|
15 | - 'show_in_menu' => true, |
|
16 | - 'capability_type' => 'page', |
|
17 | - 'supports' => array( |
|
4 | + public static $action_post_type = 'frm_form_actions'; |
|
5 | + public static $registered_actions; |
|
6 | + |
|
7 | + public static function register_post_types() { |
|
8 | + register_post_type( self::$action_post_type, array( |
|
9 | + 'label' => __( 'Form Actions', 'formidable' ), |
|
10 | + 'description' => '', |
|
11 | + 'public' => false, |
|
12 | + 'show_ui' => false, |
|
13 | + 'exclude_from_search' => true, |
|
14 | + 'show_in_nav_menus' => false, |
|
15 | + 'show_in_menu' => true, |
|
16 | + 'capability_type' => 'page', |
|
17 | + 'supports' => array( |
|
18 | 18 | 'title', 'editor', 'excerpt', 'custom-fields', |
19 | 19 | 'page-attributes', |
20 | - ), |
|
21 | - 'has_archive' => false, |
|
22 | - ) ); |
|
23 | - |
|
24 | - /** |
|
25 | - * post_content: json settings |
|
26 | - * menu_order: form id |
|
27 | - * post_excerpt: action type |
|
28 | - */ |
|
29 | - |
|
30 | - self::actions_init(); |
|
31 | - } |
|
32 | - |
|
33 | - public static function actions_init() { |
|
34 | - self::$registered_actions = new Frm_Form_Action_Factory(); |
|
35 | - self::register_actions(); |
|
36 | - do_action( 'frm_form_actions_init' ); |
|
37 | - } |
|
38 | - |
|
39 | - public static function register_actions() { |
|
40 | - $action_classes = apply_filters( 'frm_registered_form_actions', array( |
|
41 | - 'email' => 'FrmEmailAction', |
|
42 | - 'wppost' => 'FrmDefPostAction', |
|
43 | - 'register' => 'FrmDefRegAction', |
|
44 | - 'paypal' => 'FrmDefPayPalAction', |
|
45 | - //'aweber' => 'FrmDefAweberAction', |
|
46 | - 'mailchimp' => 'FrmDefMlcmpAction', |
|
47 | - 'twilio' => 'FrmDefTwilioAction', |
|
48 | - 'highrise' => 'FrmDefHrsAction', |
|
49 | - ) ); |
|
50 | - |
|
51 | - include_once(FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/email_action.php'); |
|
52 | - include_once(FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/default_actions.php'); |
|
53 | - |
|
54 | - foreach ( $action_classes as $action_class ) { |
|
55 | - self::$registered_actions->register($action_class); |
|
56 | - } |
|
57 | - } |
|
20 | + ), |
|
21 | + 'has_archive' => false, |
|
22 | + ) ); |
|
23 | + |
|
24 | + /** |
|
25 | + * post_content: json settings |
|
26 | + * menu_order: form id |
|
27 | + * post_excerpt: action type |
|
28 | + */ |
|
29 | + |
|
30 | + self::actions_init(); |
|
31 | + } |
|
32 | + |
|
33 | + public static function actions_init() { |
|
34 | + self::$registered_actions = new Frm_Form_Action_Factory(); |
|
35 | + self::register_actions(); |
|
36 | + do_action( 'frm_form_actions_init' ); |
|
37 | + } |
|
38 | + |
|
39 | + public static function register_actions() { |
|
40 | + $action_classes = apply_filters( 'frm_registered_form_actions', array( |
|
41 | + 'email' => 'FrmEmailAction', |
|
42 | + 'wppost' => 'FrmDefPostAction', |
|
43 | + 'register' => 'FrmDefRegAction', |
|
44 | + 'paypal' => 'FrmDefPayPalAction', |
|
45 | + //'aweber' => 'FrmDefAweberAction', |
|
46 | + 'mailchimp' => 'FrmDefMlcmpAction', |
|
47 | + 'twilio' => 'FrmDefTwilioAction', |
|
48 | + 'highrise' => 'FrmDefHrsAction', |
|
49 | + ) ); |
|
50 | + |
|
51 | + include_once(FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/email_action.php'); |
|
52 | + include_once(FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/default_actions.php'); |
|
53 | + |
|
54 | + foreach ( $action_classes as $action_class ) { |
|
55 | + self::$registered_actions->register($action_class); |
|
56 | + } |
|
57 | + } |
|
58 | 58 | |
59 | 59 | public static function get_form_actions( $action = 'all' ) { |
60 | - $temp_actions = self::$registered_actions; |
|
61 | - if ( empty($temp_actions) ) { |
|
62 | - self::actions_init(); |
|
63 | - $temp_actions = self::$registered_actions->actions; |
|
64 | - } else { |
|
65 | - $temp_actions = $temp_actions->actions; |
|
66 | - } |
|
60 | + $temp_actions = self::$registered_actions; |
|
61 | + if ( empty($temp_actions) ) { |
|
62 | + self::actions_init(); |
|
63 | + $temp_actions = self::$registered_actions->actions; |
|
64 | + } else { |
|
65 | + $temp_actions = $temp_actions->actions; |
|
66 | + } |
|
67 | 67 | |
68 | - $actions = array(); |
|
68 | + $actions = array(); |
|
69 | 69 | |
70 | - foreach ( $temp_actions as $a ) { |
|
71 | - if ( 'all' != $action && $a->id_base == $action ) { |
|
72 | - return $a; |
|
73 | - } |
|
70 | + foreach ( $temp_actions as $a ) { |
|
71 | + if ( 'all' != $action && $a->id_base == $action ) { |
|
72 | + return $a; |
|
73 | + } |
|
74 | 74 | |
75 | 75 | $actions[ $a->id_base ] = $a; |
76 | - } |
|
77 | - unset( $temp_actions, $a ); |
|
78 | - |
|
79 | - $action_limit = 10; |
|
80 | - if ( count( $actions ) <= $action_limit ) { |
|
81 | - return $actions; |
|
82 | - } |
|
83 | - |
|
84 | - // remove the last few inactive icons if there are too many |
|
85 | - $temp_actions = $actions; |
|
86 | - arsort( $temp_actions ); |
|
87 | - foreach ( $temp_actions as $type => $a ) { |
|
88 | - if ( ! isset( $a->action_options['active'] ) || empty( $a->action_options['active'] ) ) { |
|
76 | + } |
|
77 | + unset( $temp_actions, $a ); |
|
78 | + |
|
79 | + $action_limit = 10; |
|
80 | + if ( count( $actions ) <= $action_limit ) { |
|
81 | + return $actions; |
|
82 | + } |
|
83 | + |
|
84 | + // remove the last few inactive icons if there are too many |
|
85 | + $temp_actions = $actions; |
|
86 | + arsort( $temp_actions ); |
|
87 | + foreach ( $temp_actions as $type => $a ) { |
|
88 | + if ( ! isset( $a->action_options['active'] ) || empty( $a->action_options['active'] ) ) { |
|
89 | 89 | unset( $actions[ $type ] ); |
90 | - if ( count( $actions ) <= $action_limit ) { |
|
91 | - break; |
|
92 | - } |
|
93 | - } |
|
94 | - unset( $type, $a ); |
|
95 | - } |
|
90 | + if ( count( $actions ) <= $action_limit ) { |
|
91 | + break; |
|
92 | + } |
|
93 | + } |
|
94 | + unset( $type, $a ); |
|
95 | + } |
|
96 | 96 | |
97 | - return $actions; |
|
98 | - } |
|
97 | + return $actions; |
|
98 | + } |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * @since 2.0 |
102 | 102 | */ |
103 | - public static function list_actions( $form, $values ) { |
|
104 | - if ( empty( $form ) ) { |
|
105 | - return; |
|
106 | - } |
|
103 | + public static function list_actions( $form, $values ) { |
|
104 | + if ( empty( $form ) ) { |
|
105 | + return; |
|
106 | + } |
|
107 | 107 | |
108 | 108 | /** |
109 | 109 | * use this hook to migrate old settings into a new action |
@@ -113,114 +113,114 @@ discard block |
||
113 | 113 | |
114 | 114 | $form_actions = FrmFormAction::get_action_for_form( $form->id ); |
115 | 115 | |
116 | - $action_controls = self::get_form_actions(); |
|
116 | + $action_controls = self::get_form_actions(); |
|
117 | 117 | |
118 | - $action_map = array(); |
|
118 | + $action_map = array(); |
|
119 | 119 | |
120 | 120 | foreach ( $action_controls as $key => $control ) { |
121 | - $action_map[ $control->id_base ] = $key; |
|
122 | - } |
|
121 | + $action_map[ $control->id_base ] = $key; |
|
122 | + } |
|
123 | 123 | |
124 | - foreach ( $form_actions as $action ) { |
|
125 | - if ( ! isset( $action_map[ $action->post_excerpt ] ) ) { |
|
126 | - // don't try and show settings if action no longer exists |
|
127 | - continue; |
|
128 | - } |
|
124 | + foreach ( $form_actions as $action ) { |
|
125 | + if ( ! isset( $action_map[ $action->post_excerpt ] ) ) { |
|
126 | + // don't try and show settings if action no longer exists |
|
127 | + continue; |
|
128 | + } |
|
129 | 129 | |
130 | - self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values ); |
|
131 | - } |
|
132 | - } |
|
130 | + self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values ); |
|
131 | + } |
|
132 | + } |
|
133 | 133 | |
134 | 134 | public static function action_control( $form_action, $form, $action_key, $action_control, $values ) { |
135 | - $action_control->_set($action_key); |
|
136 | - include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/form_action.php'); |
|
137 | - } |
|
135 | + $action_control->_set($action_key); |
|
136 | + include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/form_action.php'); |
|
137 | + } |
|
138 | 138 | |
139 | - public static function add_form_action() { |
|
140 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
139 | + public static function add_form_action() { |
|
140 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
141 | 141 | |
142 | - global $frm_vars; |
|
142 | + global $frm_vars; |
|
143 | 143 | |
144 | 144 | $action_key = absint( $_POST['list_id'] ); |
145 | - $action_type = sanitize_text_field( $_POST['type'] ); |
|
145 | + $action_type = sanitize_text_field( $_POST['type'] ); |
|
146 | 146 | |
147 | - $action_control = self::get_form_actions( $action_type ); |
|
148 | - $action_control->_set($action_key); |
|
147 | + $action_control = self::get_form_actions( $action_type ); |
|
148 | + $action_control->_set($action_key); |
|
149 | 149 | |
150 | - $form_id = absint( $_POST['form_id'] ); |
|
150 | + $form_id = absint( $_POST['form_id'] ); |
|
151 | 151 | |
152 | - $form_action = $action_control->prepare_new($form_id); |
|
152 | + $form_action = $action_control->prepare_new($form_id); |
|
153 | 153 | |
154 | - $values = array(); |
|
155 | - $form = self::fields_to_values($form_id, $values); |
|
154 | + $values = array(); |
|
155 | + $form = self::fields_to_values($form_id, $values); |
|
156 | 156 | |
157 | - include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/form_action.php'); |
|
158 | - wp_die(); |
|
159 | - } |
|
157 | + include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/form_action.php'); |
|
158 | + wp_die(); |
|
159 | + } |
|
160 | 160 | |
161 | - public static function fill_action() { |
|
162 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
161 | + public static function fill_action() { |
|
162 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
163 | 163 | |
164 | - $action_key = absint( $_POST['action_id'] ); |
|
165 | - $action_type = sanitize_text_field( $_POST['action_type'] ); |
|
164 | + $action_key = absint( $_POST['action_id'] ); |
|
165 | + $action_type = sanitize_text_field( $_POST['action_type'] ); |
|
166 | 166 | |
167 | - $action_control = self::get_form_actions( $action_type ); |
|
168 | - if ( empty($action_control) ) { |
|
169 | - wp_die(); |
|
170 | - } |
|
167 | + $action_control = self::get_form_actions( $action_type ); |
|
168 | + if ( empty($action_control) ) { |
|
169 | + wp_die(); |
|
170 | + } |
|
171 | 171 | |
172 | - $form_action = $action_control->get_single_action( $action_key ); |
|
172 | + $form_action = $action_control->get_single_action( $action_key ); |
|
173 | 173 | |
174 | - $values = array(); |
|
175 | - $form = self::fields_to_values($form_action->menu_order, $values); |
|
174 | + $values = array(); |
|
175 | + $form = self::fields_to_values($form_action->menu_order, $values); |
|
176 | 176 | |
177 | - include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/_action_inside.php'); |
|
178 | - wp_die(); |
|
179 | - } |
|
177 | + include(FrmAppHelper::plugin_path() .'/classes/views/frm-form-actions/_action_inside.php'); |
|
178 | + wp_die(); |
|
179 | + } |
|
180 | 180 | |
181 | 181 | private static function fields_to_values( $form_id, array &$values ) { |
182 | - $form = FrmForm::getOne($form_id); |
|
182 | + $form = FrmForm::getOne($form_id); |
|
183 | 183 | |
184 | 184 | $values = array( 'fields' => array(), 'id' => $form->id ); |
185 | 185 | |
186 | - $fields = FrmField::get_all_for_form($form->id); |
|
187 | - foreach ( $fields as $k => $f ) { |
|
188 | - $f = (array) $f; |
|
189 | - $opts = (array) $f['field_options']; |
|
190 | - $f = array_merge($opts, $f); |
|
191 | - if ( ! isset( $f['post_field'] ) ) { |
|
192 | - $f['post_field'] = ''; |
|
193 | - } |
|
194 | - $values['fields'][] = $f; |
|
195 | - unset($k, $f); |
|
196 | - } |
|
197 | - |
|
198 | - return $form; |
|
199 | - } |
|
186 | + $fields = FrmField::get_all_for_form($form->id); |
|
187 | + foreach ( $fields as $k => $f ) { |
|
188 | + $f = (array) $f; |
|
189 | + $opts = (array) $f['field_options']; |
|
190 | + $f = array_merge($opts, $f); |
|
191 | + if ( ! isset( $f['post_field'] ) ) { |
|
192 | + $f['post_field'] = ''; |
|
193 | + } |
|
194 | + $values['fields'][] = $f; |
|
195 | + unset($k, $f); |
|
196 | + } |
|
197 | + |
|
198 | + return $form; |
|
199 | + } |
|
200 | 200 | |
201 | 201 | public static function update_settings( $form_id ) { |
202 | - global $wpdb; |
|
202 | + global $wpdb; |
|
203 | 203 | |
204 | - $registered_actions = self::$registered_actions->actions; |
|
204 | + $registered_actions = self::$registered_actions->actions; |
|
205 | 205 | |
206 | 206 | $old_actions = FrmDb::get_col( $wpdb->posts, array( 'post_type' => self::$action_post_type, 'menu_order' => $form_id ), 'ID' ); |
207 | - $new_actions = array(); |
|
207 | + $new_actions = array(); |
|
208 | 208 | |
209 | - foreach ( $registered_actions as $registered_action ) { |
|
210 | - $action_ids = $registered_action->update_callback($form_id); |
|
211 | - if ( ! empty( $action_ids ) ) { |
|
212 | - $new_actions[] = $action_ids; |
|
213 | - } |
|
214 | - } |
|
209 | + foreach ( $registered_actions as $registered_action ) { |
|
210 | + $action_ids = $registered_action->update_callback($form_id); |
|
211 | + if ( ! empty( $action_ids ) ) { |
|
212 | + $new_actions[] = $action_ids; |
|
213 | + } |
|
214 | + } |
|
215 | 215 | |
216 | - //Only use array_merge if there are new actions |
|
217 | - if ( ! empty( $new_actions ) ) { |
|
218 | - $new_actions = call_user_func_array( 'array_merge', $new_actions ); |
|
219 | - } |
|
220 | - $old_actions = array_diff( $old_actions, $new_actions ); |
|
216 | + //Only use array_merge if there are new actions |
|
217 | + if ( ! empty( $new_actions ) ) { |
|
218 | + $new_actions = call_user_func_array( 'array_merge', $new_actions ); |
|
219 | + } |
|
220 | + $old_actions = array_diff( $old_actions, $new_actions ); |
|
221 | 221 | |
222 | 222 | self::delete_missing_actions( $old_actions ); |
223 | - } |
|
223 | + } |
|
224 | 224 | |
225 | 225 | public static function delete_missing_actions( $old_actions ) { |
226 | 226 | if ( ! empty( $old_actions ) ) { |
@@ -235,36 +235,36 @@ discard block |
||
235 | 235 | self::trigger_actions( 'create', $form_id, $entry_id, 'all', $args ); |
236 | 236 | } |
237 | 237 | |
238 | - /** |
|
239 | - * @param string $event |
|
240 | - */ |
|
238 | + /** |
|
239 | + * @param string $event |
|
240 | + */ |
|
241 | 241 | public static function trigger_actions( $event, $form, $entry, $type = 'all', $args = array() ) { |
242 | 242 | $form_actions = FrmFormAction::get_action_for_form( ( is_object( $form ) ? $form->id : $form ), $type ); |
243 | 243 | |
244 | 244 | if ( empty( $form_actions ) ) { |
245 | - return; |
|
246 | - } |
|
245 | + return; |
|
246 | + } |
|
247 | 247 | |
248 | 248 | FrmForm::maybe_get_form( $form ); |
249 | 249 | |
250 | - $link_settings = self::get_form_actions( $type ); |
|
251 | - if ( 'all' != $type ) { |
|
252 | - $link_settings = array( $type => $link_settings ); |
|
253 | - } |
|
250 | + $link_settings = self::get_form_actions( $type ); |
|
251 | + if ( 'all' != $type ) { |
|
252 | + $link_settings = array( $type => $link_settings ); |
|
253 | + } |
|
254 | 254 | |
255 | - $stored_actions = $action_priority = array(); |
|
255 | + $stored_actions = $action_priority = array(); |
|
256 | 256 | |
257 | 257 | $importing = in_array( $event, array( 'create', 'update' ) ) && defined( 'WP_IMPORTING' ) && WP_IMPORTING; |
258 | 258 | |
259 | - foreach ( $form_actions as $action ) { |
|
259 | + foreach ( $form_actions as $action ) { |
|
260 | 260 | $trigger_on_import = $importing && in_array( 'import', $action->post_content['event'] ); |
261 | 261 | if ( ! in_array( $event, $action->post_content['event'] ) && ! $trigger_on_import ) { |
262 | - continue; |
|
263 | - } |
|
262 | + continue; |
|
263 | + } |
|
264 | 264 | |
265 | - if ( ! is_object( $entry ) ) { |
|
266 | - $entry = FrmEntry::getOne( $entry, true ); |
|
267 | - } |
|
265 | + if ( ! is_object( $entry ) ) { |
|
266 | + $entry = FrmEntry::getOne( $entry, true ); |
|
267 | + } |
|
268 | 268 | |
269 | 269 | if ( empty( $entry ) || $entry->is_draft ) { |
270 | 270 | continue; |
@@ -273,66 +273,66 @@ discard block |
||
273 | 273 | $child_entry = ( ( $form && is_numeric( $form->parent_form_id ) && $form->parent_form_id ) || ( $entry && ( $entry->form_id != $form->id || $entry->parent_item_id ) ) || ( isset( $args['is_child'] ) && $args['is_child'] ) ); |
274 | 274 | |
275 | 275 | if ( $child_entry ) { |
276 | - //don't trigger actions for sub forms |
|
277 | - continue; |
|
278 | - } |
|
276 | + //don't trigger actions for sub forms |
|
277 | + continue; |
|
278 | + } |
|
279 | 279 | |
280 | - // check conditional logic |
|
280 | + // check conditional logic |
|
281 | 281 | $stop = FrmFormAction::action_conditions_met( $action, $entry ); |
282 | - if ( $stop ) { |
|
283 | - continue; |
|
284 | - } |
|
282 | + if ( $stop ) { |
|
283 | + continue; |
|
284 | + } |
|
285 | 285 | |
286 | - // store actions so they can be triggered with the correct priority |
|
287 | - $stored_actions[ $action->ID ] = $action; |
|
288 | - $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
286 | + // store actions so they can be triggered with the correct priority |
|
287 | + $stored_actions[ $action->ID ] = $action; |
|
288 | + $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
289 | 289 | |
290 | - unset($action); |
|
291 | - } |
|
290 | + unset($action); |
|
291 | + } |
|
292 | 292 | |
293 | - if ( ! empty( $stored_actions ) ) { |
|
294 | - asort($action_priority); |
|
293 | + if ( ! empty( $stored_actions ) ) { |
|
294 | + asort($action_priority); |
|
295 | 295 | |
296 | - // make sure hooks are loaded |
|
297 | - new FrmNotification(); |
|
296 | + // make sure hooks are loaded |
|
297 | + new FrmNotification(); |
|
298 | 298 | |
299 | - foreach ( $action_priority as $action_id => $priority ) { |
|
300 | - $action = $stored_actions[ $action_id ]; |
|
301 | - do_action('frm_trigger_'. $action->post_excerpt .'_action', $action, $entry, $form, $event); |
|
302 | - do_action('frm_trigger_'. $action->post_excerpt .'_'. $event .'_action', $action, $entry, $form); |
|
299 | + foreach ( $action_priority as $action_id => $priority ) { |
|
300 | + $action = $stored_actions[ $action_id ]; |
|
301 | + do_action('frm_trigger_'. $action->post_excerpt .'_action', $action, $entry, $form, $event); |
|
302 | + do_action('frm_trigger_'. $action->post_excerpt .'_'. $event .'_action', $action, $entry, $form); |
|
303 | 303 | |
304 | - // If post is created, get updated $entry object |
|
305 | - if ( $action->post_excerpt == 'wppost' && $event == 'create' ) { |
|
306 | - $entry = FrmEntry::getOne($entry->id, true); |
|
307 | - } |
|
308 | - } |
|
309 | - } |
|
310 | - } |
|
304 | + // If post is created, get updated $entry object |
|
305 | + if ( $action->post_excerpt == 'wppost' && $event == 'create' ) { |
|
306 | + $entry = FrmEntry::getOne($entry->id, true); |
|
307 | + } |
|
308 | + } |
|
309 | + } |
|
310 | + } |
|
311 | 311 | |
312 | 312 | public static function duplicate_form_actions( $form_id, $values, $args = array() ) { |
313 | - if ( ! isset($args['old_id']) || empty($args['old_id']) ) { |
|
314 | - // continue if we know which actions to copy |
|
315 | - return; |
|
316 | - } |
|
313 | + if ( ! isset($args['old_id']) || empty($args['old_id']) ) { |
|
314 | + // continue if we know which actions to copy |
|
315 | + return; |
|
316 | + } |
|
317 | 317 | |
318 | - $action_controls = self::get_form_actions( ); |
|
318 | + $action_controls = self::get_form_actions( ); |
|
319 | 319 | |
320 | - foreach ( $action_controls as $action_control ) { |
|
321 | - $action_control->duplicate_form_actions( $form_id, $args['old_id'] ); |
|
322 | - unset( $action_control ); |
|
323 | - } |
|
324 | - } |
|
320 | + foreach ( $action_controls as $action_control ) { |
|
321 | + $action_control->duplicate_form_actions( $form_id, $args['old_id'] ); |
|
322 | + unset( $action_control ); |
|
323 | + } |
|
324 | + } |
|
325 | 325 | |
326 | - public static function limit_by_type( $where ) { |
|
327 | - global $frm_vars, $wpdb; |
|
326 | + public static function limit_by_type( $where ) { |
|
327 | + global $frm_vars, $wpdb; |
|
328 | 328 | |
329 | - if ( ! isset( $frm_vars['action_type'] ) ) { |
|
330 | - return $where; |
|
331 | - } |
|
329 | + if ( ! isset( $frm_vars['action_type'] ) ) { |
|
330 | + return $where; |
|
331 | + } |
|
332 | 332 | |
333 | - $where .= $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] ); |
|
334 | - return $where; |
|
335 | - } |
|
333 | + $where .= $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] ); |
|
334 | + return $where; |
|
335 | + } |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | foreach ( $keys as $key ) { |
360 | 360 | // don't register new action if old action with the same id is already registered |
361 | 361 | if ( ! isset( $this->actions[ $key ] ) ) { |
362 | - $this->actions[ $key ]->_register(); |
|
362 | + $this->actions[ $key ]->_register(); |
|
363 | 363 | } |
364 | 364 | } |
365 | 365 | } |
@@ -2,78 +2,78 @@ |
||
2 | 2 | |
3 | 3 | class FrmSettingsController { |
4 | 4 | |
5 | - public static function menu() { |
|
5 | + public static function menu() { |
|
6 | 6 | // Make sure admins can see the menu items |
7 | 7 | FrmAppHelper::force_capability( 'frm_change_settings' ); |
8 | 8 | |
9 | - add_submenu_page( 'formidable', 'Formidable | ' . __( 'Global Settings', 'formidable' ), __( 'Global Settings', 'formidable' ), 'frm_change_settings', 'formidable-settings', 'FrmSettingsController::route' ); |
|
10 | - } |
|
9 | + add_submenu_page( 'formidable', 'Formidable | ' . __( 'Global Settings', 'formidable' ), __( 'Global Settings', 'formidable' ), 'frm_change_settings', 'formidable-settings', 'FrmSettingsController::route' ); |
|
10 | + } |
|
11 | 11 | |
12 | - public static function license_box() { |
|
12 | + public static function license_box() { |
|
13 | 13 | $a = FrmAppHelper::simple_get( 't', 'sanitize_title', 'general_settings' ); |
14 | - include( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/license_box.php' ); |
|
15 | - } |
|
14 | + include( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/license_box.php' ); |
|
15 | + } |
|
16 | 16 | |
17 | - public static function display_form( $errors = array(), $message = '' ) { |
|
18 | - global $frm_vars; |
|
17 | + public static function display_form( $errors = array(), $message = '' ) { |
|
18 | + global $frm_vars; |
|
19 | 19 | |
20 | - $frm_settings = FrmAppHelper::get_settings(); |
|
21 | - $frm_roles = FrmAppHelper::frm_capabilities(); |
|
20 | + $frm_settings = FrmAppHelper::get_settings(); |
|
21 | + $frm_roles = FrmAppHelper::frm_capabilities(); |
|
22 | 22 | |
23 | - $uploads = wp_upload_dir(); |
|
24 | - $target_path = $uploads['basedir'] . '/formidable/css'; |
|
23 | + $uploads = wp_upload_dir(); |
|
24 | + $target_path = $uploads['basedir'] . '/formidable/css'; |
|
25 | 25 | |
26 | 26 | $sections = array(); |
27 | 27 | if ( apply_filters( 'frm_include_addon_page', false ) ) { |
28 | 28 | $sections['licenses'] = array( 'class' => 'FrmAddonsController', 'function' => 'show_addons' ); |
29 | 29 | } |
30 | - $sections = apply_filters( 'frm_add_settings_section', $sections ); |
|
30 | + $sections = apply_filters( 'frm_add_settings_section', $sections ); |
|
31 | 31 | |
32 | - $captcha_lang = FrmAppHelper::locales( 'captcha' ); |
|
32 | + $captcha_lang = FrmAppHelper::locales( 'captcha' ); |
|
33 | 33 | |
34 | - require( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/form.php' ); |
|
35 | - } |
|
34 | + require( FrmAppHelper::plugin_path() . '/classes/views/frm-settings/form.php' ); |
|
35 | + } |
|
36 | 36 | |
37 | - public static function process_form( $stop_load = false ) { |
|
38 | - global $frm_vars; |
|
37 | + public static function process_form( $stop_load = false ) { |
|
38 | + global $frm_vars; |
|
39 | 39 | |
40 | - $frm_settings = FrmAppHelper::get_settings(); |
|
40 | + $frm_settings = FrmAppHelper::get_settings(); |
|
41 | 41 | |
42 | 42 | $process_form = FrmAppHelper::get_post_param( 'process_form', '', 'sanitize_text_field' ); |
43 | 43 | if ( ! wp_verify_nonce( $process_form, 'process_form_nonce' ) ) { |
44 | - wp_die( $frm_settings->admin_permission ); |
|
45 | - } |
|
44 | + wp_die( $frm_settings->admin_permission ); |
|
45 | + } |
|
46 | 46 | |
47 | - $errors = array(); |
|
48 | - $message = ''; |
|
47 | + $errors = array(); |
|
48 | + $message = ''; |
|
49 | 49 | |
50 | - if ( ! isset( $frm_vars['settings_routed'] ) || ! $frm_vars['settings_routed'] ) { |
|
51 | - //$errors = $frm_settings->validate($_POST,array()); |
|
52 | - $frm_settings->update( stripslashes_deep( $_POST ) ); |
|
50 | + if ( ! isset( $frm_vars['settings_routed'] ) || ! $frm_vars['settings_routed'] ) { |
|
51 | + //$errors = $frm_settings->validate($_POST,array()); |
|
52 | + $frm_settings->update( stripslashes_deep( $_POST ) ); |
|
53 | 53 | |
54 | - if ( empty( $errors ) ) { |
|
55 | - $frm_settings->store(); |
|
56 | - $message = __( 'Settings Saved', 'formidable' ); |
|
57 | - } |
|
58 | - } else { |
|
59 | - $message = __( 'Settings Saved', 'formidable' ); |
|
60 | - } |
|
54 | + if ( empty( $errors ) ) { |
|
55 | + $frm_settings->store(); |
|
56 | + $message = __( 'Settings Saved', 'formidable' ); |
|
57 | + } |
|
58 | + } else { |
|
59 | + $message = __( 'Settings Saved', 'formidable' ); |
|
60 | + } |
|
61 | 61 | |
62 | 62 | if ( $stop_load == 'stop_load' ) { |
63 | - $frm_vars['settings_routed'] = true; |
|
64 | - return; |
|
65 | - } |
|
63 | + $frm_vars['settings_routed'] = true; |
|
64 | + return; |
|
65 | + } |
|
66 | 66 | |
67 | - self::display_form( $errors, $message ); |
|
68 | - } |
|
67 | + self::display_form( $errors, $message ); |
|
68 | + } |
|
69 | 69 | |
70 | - public static function route( $stop_load = false ) { |
|
71 | - $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
70 | + public static function route( $stop_load = false ) { |
|
71 | + $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
72 | 72 | $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); |
73 | - if ( $action == 'process-form' ) { |
|
74 | - return self::process_form( $stop_load ); |
|
75 | - } else if ( $stop_load != 'stop_load' ) { |
|
76 | - return self::display_form(); |
|
77 | - } |
|
78 | - } |
|
73 | + if ( $action == 'process-form' ) { |
|
74 | + return self::process_form( $stop_load ); |
|
75 | + } else if ( $stop_load != 'stop_load' ) { |
|
76 | + return self::display_form(); |
|
77 | + } |
|
78 | + } |
|
79 | 79 | } |
@@ -5,68 +5,68 @@ discard block |
||
5 | 5 | |
6 | 6 | class FrmEntriesHelper { |
7 | 7 | |
8 | - public static function setup_new_vars( $fields, $form = '', $reset = false, $args = array() ) { |
|
9 | - global $frm_vars; |
|
10 | - $values = array(); |
|
8 | + public static function setup_new_vars( $fields, $form = '', $reset = false, $args = array() ) { |
|
9 | + global $frm_vars; |
|
10 | + $values = array(); |
|
11 | 11 | foreach ( array( 'name' => '', 'description' => '', 'item_key' => '' ) as $var => $default ) { |
12 | - $values[ $var ] = FrmAppHelper::get_post_param( $var, $default ); |
|
13 | - } |
|
14 | - |
|
15 | - $values['fields'] = array(); |
|
16 | - if ( empty($fields) ) { |
|
17 | - return apply_filters('frm_setup_new_entry', $values); |
|
18 | - } |
|
19 | - |
|
20 | - foreach ( (array) $fields as $field ) { |
|
21 | - $new_value = self::get_field_value_for_new_entry( $field, $reset ); |
|
22 | - |
|
23 | - $field_array = array( |
|
24 | - 'id' => $field->id, |
|
25 | - 'value' => $new_value, |
|
26 | - 'default_value' => $field->default_value, |
|
27 | - 'name' => $field->name, |
|
28 | - 'description' => $field->description, |
|
29 | - 'type' => apply_filters('frm_field_type', $field->type, $field, $new_value), |
|
30 | - 'options' => $field->options, |
|
31 | - 'required' => $field->required, |
|
32 | - 'field_key' => $field->field_key, |
|
33 | - 'field_order' => $field->field_order, |
|
34 | - 'form_id' => $field->form_id, |
|
12 | + $values[ $var ] = FrmAppHelper::get_post_param( $var, $default ); |
|
13 | + } |
|
14 | + |
|
15 | + $values['fields'] = array(); |
|
16 | + if ( empty($fields) ) { |
|
17 | + return apply_filters('frm_setup_new_entry', $values); |
|
18 | + } |
|
19 | + |
|
20 | + foreach ( (array) $fields as $field ) { |
|
21 | + $new_value = self::get_field_value_for_new_entry( $field, $reset ); |
|
22 | + |
|
23 | + $field_array = array( |
|
24 | + 'id' => $field->id, |
|
25 | + 'value' => $new_value, |
|
26 | + 'default_value' => $field->default_value, |
|
27 | + 'name' => $field->name, |
|
28 | + 'description' => $field->description, |
|
29 | + 'type' => apply_filters('frm_field_type', $field->type, $field, $new_value), |
|
30 | + 'options' => $field->options, |
|
31 | + 'required' => $field->required, |
|
32 | + 'field_key' => $field->field_key, |
|
33 | + 'field_order' => $field->field_order, |
|
34 | + 'form_id' => $field->form_id, |
|
35 | 35 | 'parent_form_id' => isset( $args['parent_form_id'] ) ? $args['parent_form_id'] : $field->form_id, |
36 | - ); |
|
36 | + ); |
|
37 | 37 | |
38 | - $opt_defaults = FrmFieldsHelper::get_default_field_opts($field_array['type'], $field, true); |
|
39 | - $opt_defaults['required_indicator'] = ''; |
|
38 | + $opt_defaults = FrmFieldsHelper::get_default_field_opts($field_array['type'], $field, true); |
|
39 | + $opt_defaults['required_indicator'] = ''; |
|
40 | 40 | $opt_defaults['original_type'] = $field->type; |
41 | 41 | |
42 | 42 | foreach ( $opt_defaults as $opt => $default_opt ) { |
43 | - $field_array[ $opt ] = ( isset( $field->field_options[ $opt ] ) && $field->field_options[ $opt ] != '' ) ? $field->field_options[ $opt ] : $default_opt; |
|
44 | - unset($opt, $default_opt); |
|
45 | - } |
|
43 | + $field_array[ $opt ] = ( isset( $field->field_options[ $opt ] ) && $field->field_options[ $opt ] != '' ) ? $field->field_options[ $opt ] : $default_opt; |
|
44 | + unset($opt, $default_opt); |
|
45 | + } |
|
46 | 46 | |
47 | - unset($opt_defaults); |
|
47 | + unset($opt_defaults); |
|
48 | 48 | |
49 | - if ( $field_array['custom_html'] == '' ) { |
|
50 | - $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field->type); |
|
51 | - } |
|
49 | + if ( $field_array['custom_html'] == '' ) { |
|
50 | + $field_array['custom_html'] = FrmFieldsHelper::get_default_html($field->type); |
|
51 | + } |
|
52 | 52 | |
53 | - $field_array = apply_filters('frm_setup_new_fields_vars', $field_array, $field); |
|
54 | - $field_array = array_merge( $field->field_options, $field_array ); |
|
53 | + $field_array = apply_filters('frm_setup_new_fields_vars', $field_array, $field); |
|
54 | + $field_array = array_merge( $field->field_options, $field_array ); |
|
55 | 55 | |
56 | - $values['fields'][] = $field_array; |
|
56 | + $values['fields'][] = $field_array; |
|
57 | 57 | |
58 | - if ( ! $form || ! isset($form->id) ) { |
|
59 | - $form = FrmForm::getOne($field->form_id); |
|
60 | - } |
|
61 | - } |
|
58 | + if ( ! $form || ! isset($form->id) ) { |
|
59 | + $form = FrmForm::getOne($field->form_id); |
|
60 | + } |
|
61 | + } |
|
62 | 62 | |
63 | - $form->options = maybe_unserialize($form->options); |
|
64 | - if ( is_array($form->options) ) { |
|
65 | - foreach ( $form->options as $opt => $value ) { |
|
66 | - $values[ $opt ] = FrmAppHelper::get_post_param( $opt, $value ); |
|
67 | - unset($opt, $value); |
|
68 | - } |
|
69 | - } |
|
63 | + $form->options = maybe_unserialize($form->options); |
|
64 | + if ( is_array($form->options) ) { |
|
65 | + foreach ( $form->options as $opt => $value ) { |
|
66 | + $values[ $opt ] = FrmAppHelper::get_post_param( $opt, $value ); |
|
67 | + unset($opt, $value); |
|
68 | + } |
|
69 | + } |
|
70 | 70 | |
71 | 71 | $form_defaults = FrmFormsHelper::get_default_opts(); |
72 | 72 | |
@@ -76,18 +76,18 @@ discard block |
||
76 | 76 | $values = array_merge( $form_defaults, $values ); |
77 | 77 | |
78 | 78 | return apply_filters( 'frm_setup_new_entry', $values ); |
79 | - } |
|
79 | + } |
|
80 | 80 | |
81 | 81 | /** |
82 | - * Set the value for each field |
|
83 | - * This function is used when the form is first loaded and on all page turns *for a new entry* |
|
84 | - * |
|
85 | - * @since 2.0.13 |
|
86 | - * |
|
87 | - * @param object $field - this is passed by reference since it is an object |
|
88 | - * @param boolean $reset |
|
89 | - * @return string|array $new_value |
|
90 | - */ |
|
82 | + * Set the value for each field |
|
83 | + * This function is used when the form is first loaded and on all page turns *for a new entry* |
|
84 | + * |
|
85 | + * @since 2.0.13 |
|
86 | + * |
|
87 | + * @param object $field - this is passed by reference since it is an object |
|
88 | + * @param boolean $reset |
|
89 | + * @return string|array $new_value |
|
90 | + */ |
|
91 | 91 | private static function get_field_value_for_new_entry( $field, $reset ) { |
92 | 92 | //If checkbox, multi-select dropdown, or checkbox data from entries field, the value should be an array |
93 | 93 | $return_array = FrmField::is_field_with_multiple_values( $field ); |
@@ -118,15 +118,15 @@ discard block |
||
118 | 118 | |
119 | 119 | public static function setup_edit_vars( $values, $record ) { |
120 | 120 | $values['item_key'] = FrmAppHelper::get_post_param( 'item_key', $record->item_key, 'sanitize_title' ); |
121 | - $values['form_id'] = $record->form_id; |
|
122 | - $values['is_draft'] = $record->is_draft; |
|
123 | - return apply_filters('frm_setup_edit_entry_vars', $values, $record); |
|
124 | - } |
|
121 | + $values['form_id'] = $record->form_id; |
|
122 | + $values['is_draft'] = $record->is_draft; |
|
123 | + return apply_filters('frm_setup_edit_entry_vars', $values, $record); |
|
124 | + } |
|
125 | 125 | |
126 | - public static function get_admin_params( $form = null ) { |
|
126 | + public static function get_admin_params( $form = null ) { |
|
127 | 127 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::get_admin_params' ); |
128 | 128 | return FrmForm::set_current_form( $form ); |
129 | - } |
|
129 | + } |
|
130 | 130 | |
131 | 131 | public static function set_current_form( $form_id ) { |
132 | 132 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::set_current_form' ); |
@@ -138,280 +138,280 @@ discard block |
||
138 | 138 | return FrmForm::get_current_form( $form_id ); |
139 | 139 | } |
140 | 140 | |
141 | - public static function get_current_form_id() { |
|
141 | + public static function get_current_form_id() { |
|
142 | 142 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::get_current_form_id' ); |
143 | 143 | return FrmForm::get_current_form_id(); |
144 | - } |
|
144 | + } |
|
145 | 145 | |
146 | - public static function maybe_get_entry( &$entry ) { |
|
146 | + public static function maybe_get_entry( &$entry ) { |
|
147 | 147 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmEntry::maybe_get_entry' ); |
148 | 148 | FrmEntry::maybe_get_entry( $entry ); |
149 | - } |
|
149 | + } |
|
150 | 150 | |
151 | 151 | public static function replace_default_message( $message, $atts ) { |
152 | - if ( strpos($message, '[default-message') === false && |
|
153 | - strpos($message, '[default_message') === false && |
|
154 | - ! empty( $message ) ) { |
|
155 | - return $message; |
|
156 | - } |
|
157 | - |
|
158 | - if ( empty($message) ) { |
|
159 | - $message = '[default-message]'; |
|
160 | - } |
|
161 | - |
|
162 | - preg_match_all("/\[(default-message|default_message)\b(.*?)(?:(\/))?\]/s", $message, $shortcodes, PREG_PATTERN_ORDER); |
|
163 | - |
|
164 | - foreach ( $shortcodes[0] as $short_key => $tag ) { |
|
165 | - $add_atts = shortcode_parse_atts( $shortcodes[2][ $short_key ] ); |
|
166 | - if ( $add_atts ) { |
|
167 | - $this_atts = array_merge($atts, $add_atts); |
|
168 | - } else { |
|
169 | - $this_atts = $atts; |
|
170 | - } |
|
152 | + if ( strpos($message, '[default-message') === false && |
|
153 | + strpos($message, '[default_message') === false && |
|
154 | + ! empty( $message ) ) { |
|
155 | + return $message; |
|
156 | + } |
|
157 | + |
|
158 | + if ( empty($message) ) { |
|
159 | + $message = '[default-message]'; |
|
160 | + } |
|
161 | + |
|
162 | + preg_match_all("/\[(default-message|default_message)\b(.*?)(?:(\/))?\]/s", $message, $shortcodes, PREG_PATTERN_ORDER); |
|
163 | + |
|
164 | + foreach ( $shortcodes[0] as $short_key => $tag ) { |
|
165 | + $add_atts = shortcode_parse_atts( $shortcodes[2][ $short_key ] ); |
|
166 | + if ( $add_atts ) { |
|
167 | + $this_atts = array_merge($atts, $add_atts); |
|
168 | + } else { |
|
169 | + $this_atts = $atts; |
|
170 | + } |
|
171 | 171 | |
172 | 172 | $default = FrmEntryFormat::show_entry( $this_atts ); |
173 | 173 | |
174 | - // Add the default message |
|
175 | - $message = str_replace( $shortcodes[0][ $short_key ], $default, $message ); |
|
176 | - } |
|
174 | + // Add the default message |
|
175 | + $message = str_replace( $shortcodes[0][ $short_key ], $default, $message ); |
|
176 | + } |
|
177 | 177 | |
178 | - return $message; |
|
179 | - } |
|
178 | + return $message; |
|
179 | + } |
|
180 | 180 | |
181 | 181 | public static function prepare_display_value( $entry, $field, $atts ) { |
182 | 182 | $field_value = isset( $entry->metas[ $field->id ] ) ? $entry->metas[ $field->id ] : false; |
183 | - if ( FrmAppHelper::pro_is_installed() ) { |
|
183 | + if ( FrmAppHelper::pro_is_installed() ) { |
|
184 | 184 | FrmProEntriesHelper::get_dynamic_list_values( $field, $entry, $field_value ); |
185 | - } |
|
185 | + } |
|
186 | 186 | |
187 | - if ( $field->form_id == $entry->form_id || empty($atts['embedded_field_id']) ) { |
|
188 | - return self::display_value($field_value, $field, $atts); |
|
189 | - } |
|
187 | + if ( $field->form_id == $entry->form_id || empty($atts['embedded_field_id']) ) { |
|
188 | + return self::display_value($field_value, $field, $atts); |
|
189 | + } |
|
190 | 190 | |
191 | - // this is an embeded form |
|
192 | - $val = ''; |
|
191 | + // this is an embeded form |
|
192 | + $val = ''; |
|
193 | 193 | |
194 | - if ( strpos($atts['embedded_field_id'], 'form') === 0 ) { |
|
195 | - //this is a repeating section |
|
194 | + if ( strpos($atts['embedded_field_id'], 'form') === 0 ) { |
|
195 | + //this is a repeating section |
|
196 | 196 | $child_entries = FrmEntry::getAll( array( 'it.parent_item_id' => $entry->id ) ); |
197 | - } else { |
|
198 | - // get all values for this field |
|
199 | - $child_values = isset( $entry->metas[ $atts['embedded_field_id'] ] ) ? $entry->metas[ $atts['embedded_field_id'] ] : false; |
|
197 | + } else { |
|
198 | + // get all values for this field |
|
199 | + $child_values = isset( $entry->metas[ $atts['embedded_field_id'] ] ) ? $entry->metas[ $atts['embedded_field_id'] ] : false; |
|
200 | 200 | |
201 | - if ( $child_values ) { |
|
202 | - $child_entries = FrmEntry::getAll( array( 'it.id' => (array) $child_values ) ); |
|
203 | - } |
|
204 | - } |
|
201 | + if ( $child_values ) { |
|
202 | + $child_entries = FrmEntry::getAll( array( 'it.id' => (array) $child_values ) ); |
|
203 | + } |
|
204 | + } |
|
205 | 205 | |
206 | - $field_value = array(); |
|
206 | + $field_value = array(); |
|
207 | 207 | |
208 | - if ( ! isset($child_entries) || ! $child_entries || ! FrmAppHelper::pro_is_installed() ) { |
|
209 | - return $val; |
|
210 | - } |
|
208 | + if ( ! isset($child_entries) || ! $child_entries || ! FrmAppHelper::pro_is_installed() ) { |
|
209 | + return $val; |
|
210 | + } |
|
211 | 211 | |
212 | - foreach ( $child_entries as $child_entry ) { |
|
213 | - $atts['item_id'] = $child_entry->id; |
|
214 | - $atts['post_id'] = $child_entry->post_id; |
|
212 | + foreach ( $child_entries as $child_entry ) { |
|
213 | + $atts['item_id'] = $child_entry->id; |
|
214 | + $atts['post_id'] = $child_entry->post_id; |
|
215 | 215 | |
216 | - // get the value for this field -- check for post values as well |
|
217 | - $entry_val = FrmProEntryMetaHelper::get_post_or_meta_value($child_entry, $field); |
|
216 | + // get the value for this field -- check for post values as well |
|
217 | + $entry_val = FrmProEntryMetaHelper::get_post_or_meta_value($child_entry, $field); |
|
218 | 218 | |
219 | - if ( $entry_val ) { |
|
220 | - // foreach entry get display_value |
|
221 | - $field_value[] = self::display_value($entry_val, $field, $atts); |
|
222 | - } |
|
219 | + if ( $entry_val ) { |
|
220 | + // foreach entry get display_value |
|
221 | + $field_value[] = self::display_value($entry_val, $field, $atts); |
|
222 | + } |
|
223 | 223 | |
224 | - unset($child_entry); |
|
225 | - } |
|
224 | + unset($child_entry); |
|
225 | + } |
|
226 | 226 | |
227 | - $val = implode(', ', (array) $field_value ); |
|
227 | + $val = implode(', ', (array) $field_value ); |
|
228 | 228 | $val = wp_kses_post( $val ); |
229 | 229 | |
230 | - return $val; |
|
231 | - } |
|
230 | + return $val; |
|
231 | + } |
|
232 | 232 | |
233 | - /** |
|
234 | - * Prepare the saved value for display |
|
235 | - * @return string |
|
236 | - */ |
|
233 | + /** |
|
234 | + * Prepare the saved value for display |
|
235 | + * @return string |
|
236 | + */ |
|
237 | 237 | public static function display_value( $value, $field, $atts = array() ) { |
238 | 238 | |
239 | - $defaults = array( |
|
240 | - 'type' => '', 'html' => false, 'show_filename' => true, |
|
241 | - 'truncate' => false, 'sep' => ', ', 'post_id' => 0, |
|
242 | - 'form_id' => $field->form_id, 'field' => $field, 'keepjs' => 0, |
|
239 | + $defaults = array( |
|
240 | + 'type' => '', 'html' => false, 'show_filename' => true, |
|
241 | + 'truncate' => false, 'sep' => ', ', 'post_id' => 0, |
|
242 | + 'form_id' => $field->form_id, 'field' => $field, 'keepjs' => 0, |
|
243 | 243 | 'return_array' => false, |
244 | - ); |
|
244 | + ); |
|
245 | 245 | |
246 | - $atts = wp_parse_args( $atts, $defaults ); |
|
247 | - $atts = apply_filters('frm_display_value_atts', $atts, $field, $value); |
|
246 | + $atts = wp_parse_args( $atts, $defaults ); |
|
247 | + $atts = apply_filters('frm_display_value_atts', $atts, $field, $value); |
|
248 | 248 | |
249 | - if ( ! isset($field->field_options['post_field']) ) { |
|
250 | - $field->field_options['post_field'] = ''; |
|
251 | - } |
|
249 | + if ( ! isset($field->field_options['post_field']) ) { |
|
250 | + $field->field_options['post_field'] = ''; |
|
251 | + } |
|
252 | 252 | |
253 | - if ( ! isset($field->field_options['custom_field']) ) { |
|
254 | - $field->field_options['custom_field'] = ''; |
|
255 | - } |
|
253 | + if ( ! isset($field->field_options['custom_field']) ) { |
|
254 | + $field->field_options['custom_field'] = ''; |
|
255 | + } |
|
256 | 256 | |
257 | - if ( FrmAppHelper::pro_is_installed() && $atts['post_id'] && ( $field->field_options['post_field'] || $atts['type'] == 'tag' ) ) { |
|
258 | - $atts['pre_truncate'] = $atts['truncate']; |
|
259 | - $atts['truncate'] = true; |
|
260 | - $atts['exclude_cat'] = isset($field->field_options['exclude_cat']) ? $field->field_options['exclude_cat'] : 0; |
|
257 | + if ( FrmAppHelper::pro_is_installed() && $atts['post_id'] && ( $field->field_options['post_field'] || $atts['type'] == 'tag' ) ) { |
|
258 | + $atts['pre_truncate'] = $atts['truncate']; |
|
259 | + $atts['truncate'] = true; |
|
260 | + $atts['exclude_cat'] = isset($field->field_options['exclude_cat']) ? $field->field_options['exclude_cat'] : 0; |
|
261 | 261 | |
262 | - $value = FrmProEntryMetaHelper::get_post_value($atts['post_id'], $field->field_options['post_field'], $field->field_options['custom_field'], $atts); |
|
263 | - $atts['truncate'] = $atts['pre_truncate']; |
|
264 | - } |
|
262 | + $value = FrmProEntryMetaHelper::get_post_value($atts['post_id'], $field->field_options['post_field'], $field->field_options['custom_field'], $atts); |
|
263 | + $atts['truncate'] = $atts['pre_truncate']; |
|
264 | + } |
|
265 | 265 | |
266 | - if ( $value == '' ) { |
|
267 | - return $value; |
|
268 | - } |
|
266 | + if ( $value == '' ) { |
|
267 | + return $value; |
|
268 | + } |
|
269 | 269 | |
270 | - $value = apply_filters('frm_display_value_custom', maybe_unserialize($value), $field, $atts); |
|
270 | + $value = apply_filters('frm_display_value_custom', maybe_unserialize($value), $field, $atts); |
|
271 | 271 | |
272 | - $new_value = ''; |
|
272 | + $new_value = ''; |
|
273 | 273 | |
274 | - if ( is_array($value) && $atts['type'] != 'file' ) { |
|
275 | - foreach ( $value as $val ) { |
|
276 | - if ( is_array($val) ) { |
|
274 | + if ( is_array($value) && $atts['type'] != 'file' ) { |
|
275 | + foreach ( $value as $val ) { |
|
276 | + if ( is_array($val) ) { |
|
277 | 277 | //TODO: add options for display (li or ,) |
278 | - $new_value .= implode($atts['sep'], $val); |
|
279 | - if ( $atts['type'] != 'data' ) { |
|
280 | - $new_value .= '<br/>'; |
|
281 | - } |
|
282 | - } |
|
283 | - unset($val); |
|
284 | - } |
|
285 | - } |
|
286 | - |
|
287 | - if ( ! empty($new_value) ) { |
|
288 | - $value = $new_value; |
|
289 | - } else if ( is_array($value) && $atts['type'] != 'file' && ! $atts['return_array'] ) { |
|
290 | - $value = implode($atts['sep'], $value); |
|
291 | - } |
|
292 | - |
|
293 | - if ( $atts['truncate'] && $atts['type'] != 'image' ) { |
|
294 | - $value = FrmAppHelper::truncate($value, 50); |
|
295 | - } |
|
278 | + $new_value .= implode($atts['sep'], $val); |
|
279 | + if ( $atts['type'] != 'data' ) { |
|
280 | + $new_value .= '<br/>'; |
|
281 | + } |
|
282 | + } |
|
283 | + unset($val); |
|
284 | + } |
|
285 | + } |
|
286 | + |
|
287 | + if ( ! empty($new_value) ) { |
|
288 | + $value = $new_value; |
|
289 | + } else if ( is_array($value) && $atts['type'] != 'file' && ! $atts['return_array'] ) { |
|
290 | + $value = implode($atts['sep'], $value); |
|
291 | + } |
|
292 | + |
|
293 | + if ( $atts['truncate'] && $atts['type'] != 'image' ) { |
|
294 | + $value = FrmAppHelper::truncate($value, 50); |
|
295 | + } |
|
296 | 296 | |
297 | 297 | if ( ! $atts['keepjs'] && ! is_array( $value ) ) { |
298 | 298 | $value = wp_kses_post( $value ); |
299 | 299 | } |
300 | 300 | |
301 | - return apply_filters('frm_display_value', $value, $field, $atts); |
|
302 | - } |
|
301 | + return apply_filters('frm_display_value', $value, $field, $atts); |
|
302 | + } |
|
303 | 303 | |
304 | 304 | public static function set_posted_value( $field, $value, $args ) { |
305 | - // If validating a field with "other" opt, set back to prev value now |
|
306 | - if ( isset( $args['other'] ) && $args['other'] ) { |
|
307 | - $value = $args['temp_value']; |
|
308 | - } |
|
309 | - if ( empty($args['parent_field_id']) ) { |
|
310 | - $_POST['item_meta'][ $field->id ] = $value; |
|
311 | - } else { |
|
312 | - $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field->id ] = $value; |
|
313 | - } |
|
314 | - } |
|
305 | + // If validating a field with "other" opt, set back to prev value now |
|
306 | + if ( isset( $args['other'] ) && $args['other'] ) { |
|
307 | + $value = $args['temp_value']; |
|
308 | + } |
|
309 | + if ( empty($args['parent_field_id']) ) { |
|
310 | + $_POST['item_meta'][ $field->id ] = $value; |
|
311 | + } else { |
|
312 | + $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field->id ] = $value; |
|
313 | + } |
|
314 | + } |
|
315 | 315 | |
316 | 316 | public static function get_posted_value( $field, &$value, $args ) { |
317 | 317 | $field_id = is_object( $field ) ? $field->id : $field; |
318 | 318 | |
319 | - if ( empty($args['parent_field_id']) ) { |
|
320 | - $value = isset( $_POST['item_meta'][ $field_id ] ) ? $_POST['item_meta'][ $field_id ] : ''; |
|
321 | - } else { |
|
322 | - $value = isset( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] ) ? $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] : ''; |
|
323 | - } |
|
324 | - } |
|
325 | - |
|
326 | - /** |
|
327 | - * Check if field has an "Other" option and if any other values are posted |
|
328 | - * |
|
329 | - * @since 2.0 |
|
330 | - * |
|
331 | - * @param object $field |
|
332 | - * @param string|array $value |
|
333 | - * @param array $args |
|
334 | - */ |
|
335 | - public static function maybe_set_other_validation( $field, &$value, &$args ) { |
|
336 | - $args['other'] = false; |
|
337 | - if ( ! $value || empty( $value ) || ! FrmAppHelper::pro_is_installed() ) { |
|
338 | - return; |
|
339 | - } |
|
340 | - |
|
341 | - // Get other value for fields in repeating section |
|
342 | - self::set_other_repeating_vals( $field, $value, $args ); |
|
343 | - |
|
344 | - // Check if there are any posted "Other" values |
|
319 | + if ( empty($args['parent_field_id']) ) { |
|
320 | + $value = isset( $_POST['item_meta'][ $field_id ] ) ? $_POST['item_meta'][ $field_id ] : ''; |
|
321 | + } else { |
|
322 | + $value = isset( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] ) ? $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ][ $field_id ] : ''; |
|
323 | + } |
|
324 | + } |
|
325 | + |
|
326 | + /** |
|
327 | + * Check if field has an "Other" option and if any other values are posted |
|
328 | + * |
|
329 | + * @since 2.0 |
|
330 | + * |
|
331 | + * @param object $field |
|
332 | + * @param string|array $value |
|
333 | + * @param array $args |
|
334 | + */ |
|
335 | + public static function maybe_set_other_validation( $field, &$value, &$args ) { |
|
336 | + $args['other'] = false; |
|
337 | + if ( ! $value || empty( $value ) || ! FrmAppHelper::pro_is_installed() ) { |
|
338 | + return; |
|
339 | + } |
|
340 | + |
|
341 | + // Get other value for fields in repeating section |
|
342 | + self::set_other_repeating_vals( $field, $value, $args ); |
|
343 | + |
|
344 | + // Check if there are any posted "Other" values |
|
345 | 345 | if ( FrmField::is_option_true( $field, 'other' ) && isset( $_POST['item_meta']['other'][ $field->id ] ) ) { |
346 | 346 | |
347 | - // Save original value |
|
348 | - $args['temp_value'] = $value; |
|
349 | - $args['other'] = true; |
|
350 | - $other_vals = stripslashes_deep( $_POST['item_meta']['other'][ $field->id ] ); |
|
351 | - |
|
352 | - // Set the validation value now |
|
353 | - self::set_other_validation_val( $value, $other_vals, $field, $args ); |
|
354 | - } |
|
355 | - } |
|
356 | - |
|
357 | - /** |
|
358 | - * Sets radio or checkbox value equal to "other" value if it is set - FOR REPEATING SECTIONS |
|
359 | - * |
|
360 | - * @since 2.0 |
|
361 | - * |
|
362 | - * @param object $field |
|
363 | - * @param string|array $value |
|
364 | - * @param array $args |
|
365 | - */ |
|
366 | - public static function set_other_repeating_vals( $field, &$value, &$args ) { |
|
367 | - if ( ! $args['parent_field_id'] ) { |
|
368 | - return; |
|
369 | - } |
|
370 | - |
|
371 | - // Check if there are any other posted "other" values for this field |
|
347 | + // Save original value |
|
348 | + $args['temp_value'] = $value; |
|
349 | + $args['other'] = true; |
|
350 | + $other_vals = stripslashes_deep( $_POST['item_meta']['other'][ $field->id ] ); |
|
351 | + |
|
352 | + // Set the validation value now |
|
353 | + self::set_other_validation_val( $value, $other_vals, $field, $args ); |
|
354 | + } |
|
355 | + } |
|
356 | + |
|
357 | + /** |
|
358 | + * Sets radio or checkbox value equal to "other" value if it is set - FOR REPEATING SECTIONS |
|
359 | + * |
|
360 | + * @since 2.0 |
|
361 | + * |
|
362 | + * @param object $field |
|
363 | + * @param string|array $value |
|
364 | + * @param array $args |
|
365 | + */ |
|
366 | + public static function set_other_repeating_vals( $field, &$value, &$args ) { |
|
367 | + if ( ! $args['parent_field_id'] ) { |
|
368 | + return; |
|
369 | + } |
|
370 | + |
|
371 | + // Check if there are any other posted "other" values for this field |
|
372 | 372 | if ( FrmField::is_option_true( $field, 'other' ) && isset( $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ]['other'][ $field->id ] ) ) { |
373 | - // Save original value |
|
374 | - $args['temp_value'] = $value; |
|
375 | - $args['other'] = true; |
|
376 | - |
|
377 | - $other_vals = $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ]['other'][ $field->id ]; |
|
378 | - |
|
379 | - // Set the validation value now |
|
380 | - self::set_other_validation_val( $value, $other_vals, $field, $args ); |
|
381 | - } |
|
382 | - } |
|
383 | - |
|
384 | - /** |
|
385 | - * Modify value used for validation |
|
386 | - * This function essentially removes the "Other" radio or checkbox value from the $value being validated. |
|
387 | - * It also adds any text from the free text fields to the value |
|
388 | - * |
|
389 | - * Needs to accommodate for times when other opt is selected, but no other free text is entered |
|
390 | - * |
|
391 | - * @since 2.0 |
|
392 | - * |
|
393 | - * @param string|array $value |
|
394 | - * @param string|array $other_vals (usually of posted values) |
|
395 | - * @param object $field |
|
396 | - * @param array $args |
|
397 | - */ |
|
398 | - public static function set_other_validation_val( &$value, $other_vals, $field, &$args ) { |
|
399 | - // Checkboxes and multi-select dropdowns |
|
400 | - if ( is_array( $value ) && $field->type == 'checkbox' ) { |
|
401 | - // Combine "Other" values with checked values. "Other" values will override checked box values. |
|
402 | - $value = array_merge( $value, $other_vals ); |
|
403 | - $value = array_filter( $value ); |
|
404 | - if ( count( $value ) == 0 ) { |
|
405 | - $value = ''; |
|
406 | - } |
|
407 | - } else { |
|
373 | + // Save original value |
|
374 | + $args['temp_value'] = $value; |
|
375 | + $args['other'] = true; |
|
376 | + |
|
377 | + $other_vals = $_POST['item_meta'][ $args['parent_field_id'] ][ $args['key_pointer'] ]['other'][ $field->id ]; |
|
378 | + |
|
379 | + // Set the validation value now |
|
380 | + self::set_other_validation_val( $value, $other_vals, $field, $args ); |
|
381 | + } |
|
382 | + } |
|
383 | + |
|
384 | + /** |
|
385 | + * Modify value used for validation |
|
386 | + * This function essentially removes the "Other" radio or checkbox value from the $value being validated. |
|
387 | + * It also adds any text from the free text fields to the value |
|
388 | + * |
|
389 | + * Needs to accommodate for times when other opt is selected, but no other free text is entered |
|
390 | + * |
|
391 | + * @since 2.0 |
|
392 | + * |
|
393 | + * @param string|array $value |
|
394 | + * @param string|array $other_vals (usually of posted values) |
|
395 | + * @param object $field |
|
396 | + * @param array $args |
|
397 | + */ |
|
398 | + public static function set_other_validation_val( &$value, $other_vals, $field, &$args ) { |
|
399 | + // Checkboxes and multi-select dropdowns |
|
400 | + if ( is_array( $value ) && $field->type == 'checkbox' ) { |
|
401 | + // Combine "Other" values with checked values. "Other" values will override checked box values. |
|
402 | + $value = array_merge( $value, $other_vals ); |
|
403 | + $value = array_filter( $value ); |
|
404 | + if ( count( $value ) == 0 ) { |
|
405 | + $value = ''; |
|
406 | + } |
|
407 | + } else { |
|
408 | 408 | // Radio and dropdowns |
409 | - $other_key = array_filter( array_keys($field->options), 'is_string'); |
|
410 | - $other_key = reset( $other_key ); |
|
409 | + $other_key = array_filter( array_keys($field->options), 'is_string'); |
|
410 | + $other_key = reset( $other_key ); |
|
411 | 411 | |
412 | - // Multi-select dropdown |
|
413 | - if ( is_array( $value ) ) { |
|
414 | - $o_key = array_search( $field->options[ $other_key ], $value ); |
|
412 | + // Multi-select dropdown |
|
413 | + if ( is_array( $value ) ) { |
|
414 | + $o_key = array_search( $field->options[ $other_key ], $value ); |
|
415 | 415 | |
416 | 416 | if ( $o_key !== false ) { |
417 | 417 | // Modify the original value so other key will be preserved |
@@ -426,20 +426,20 @@ discard block |
||
426 | 426 | $args['temp_value'] = $value; |
427 | 427 | $value[ $other_key ] = reset( $other_vals ); |
428 | 428 | } |
429 | - } else if ( $field->options[ $other_key ] == $value ) { |
|
430 | - $value = $other_vals; |
|
431 | - } |
|
432 | - } |
|
433 | - } |
|
429 | + } else if ( $field->options[ $other_key ] == $value ) { |
|
430 | + $value = $other_vals; |
|
431 | + } |
|
432 | + } |
|
433 | + } |
|
434 | 434 | |
435 | 435 | public static function enqueue_scripts( $params ) { |
436 | 436 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmFormsController::enqueue_scripts' ); |
437 | 437 | return FrmFormsController::enqueue_scripts( $params ); |
438 | 438 | } |
439 | 439 | |
440 | - // Add submitted values to a string for spam checking |
|
440 | + // Add submitted values to a string for spam checking |
|
441 | 441 | public static function entry_array_to_string( $values ) { |
442 | - $content = ''; |
|
442 | + $content = ''; |
|
443 | 443 | foreach ( $values['item_meta'] as $val ) { |
444 | 444 | if ( $content != '' ) { |
445 | 445 | $content .= "\n\n"; |
@@ -447,14 +447,14 @@ discard block |
||
447 | 447 | |
448 | 448 | if ( is_array($val) ) { |
449 | 449 | $val = FrmAppHelper::array_flatten( $val ); |
450 | - $val = implode(',', $val); |
|
450 | + $val = implode(',', $val); |
|
451 | 451 | } |
452 | 452 | |
453 | 453 | $content .= $val; |
454 | 454 | } |
455 | 455 | |
456 | 456 | return $content; |
457 | - } |
|
457 | + } |
|
458 | 458 | |
459 | 459 | public static function fill_entry_values( $atts, $f, array &$values ) { |
460 | 460 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmEntryFormat::fill_entry_values' ); |
@@ -6,46 +6,46 @@ discard block |
||
6 | 6 | protected $field; |
7 | 7 | |
8 | 8 | public function prepare_items() { |
9 | - global $wpdb, $per_page; |
|
9 | + global $wpdb, $per_page; |
|
10 | 10 | |
11 | 11 | $per_page = $this->get_items_per_page( 'formidable_page_formidable_entries_per_page' ); |
12 | 12 | |
13 | - $form_id = $this->params['form']; |
|
14 | - if ( ! $form_id ) { |
|
15 | - $this->items = array(); |
|
16 | - $this->set_pagination_args( array( |
|
17 | - 'total_items' => 0, |
|
13 | + $form_id = $this->params['form']; |
|
14 | + if ( ! $form_id ) { |
|
15 | + $this->items = array(); |
|
16 | + $this->set_pagination_args( array( |
|
17 | + 'total_items' => 0, |
|
18 | 18 | 'per_page' => $per_page, |
19 | - ) ); |
|
20 | - return; |
|
21 | - } |
|
19 | + ) ); |
|
20 | + return; |
|
21 | + } |
|
22 | 22 | |
23 | 23 | $default_orderby = 'id'; |
24 | 24 | $default_order = 'DESC'; |
25 | 25 | |
26 | - $s_query = array( 'it.form_id' => $form_id ); |
|
26 | + $s_query = array( 'it.form_id' => $form_id ); |
|
27 | 27 | |
28 | 28 | $s = isset( $_REQUEST['s'] ) ? stripslashes($_REQUEST['s']) : ''; |
29 | 29 | |
30 | - if ( $s != '' && FrmAppHelper::pro_is_installed() ) { |
|
31 | - $fid = isset( $_REQUEST['fid'] ) ? sanitize_title( $_REQUEST['fid'] ) : ''; |
|
32 | - $s_query = FrmProEntriesHelper::get_search_str( $s_query, $s, $form_id, $fid); |
|
33 | - } |
|
30 | + if ( $s != '' && FrmAppHelper::pro_is_installed() ) { |
|
31 | + $fid = isset( $_REQUEST['fid'] ) ? sanitize_title( $_REQUEST['fid'] ) : ''; |
|
32 | + $s_query = FrmProEntriesHelper::get_search_str( $s_query, $s, $form_id, $fid); |
|
33 | + } |
|
34 | 34 | |
35 | - $orderby = isset( $_REQUEST['orderby'] ) ? sanitize_title( $_REQUEST['orderby'] ) : $default_orderby; |
|
36 | - if ( strpos($orderby, 'meta') !== false ) { |
|
37 | - $order_field_type = FrmField::get_type( str_replace( 'meta_', '', $orderby ) ); |
|
35 | + $orderby = isset( $_REQUEST['orderby'] ) ? sanitize_title( $_REQUEST['orderby'] ) : $default_orderby; |
|
36 | + if ( strpos($orderby, 'meta') !== false ) { |
|
37 | + $order_field_type = FrmField::get_type( str_replace( 'meta_', '', $orderby ) ); |
|
38 | 38 | $orderby .= in_array( $order_field_type, array( 'number', 'scale' ) ) ? ' +0 ' : ''; |
39 | - } |
|
39 | + } |
|
40 | 40 | |
41 | 41 | $order = isset( $_REQUEST['order'] ) ? sanitize_title( $_REQUEST['order'] ) : $default_order; |
42 | 42 | $order = ' ORDER BY ' . $orderby . ' ' . $order; |
43 | 43 | |
44 | - $page = $this->get_pagenum(); |
|
44 | + $page = $this->get_pagenum(); |
|
45 | 45 | $start = (int) isset( $_REQUEST['start'] ) ? absint( $_REQUEST['start'] ) : ( ( $page - 1 ) * $per_page ); |
46 | 46 | |
47 | - $this->items = FrmEntry::getAll($s_query, $order, ' LIMIT '. $start .','. $per_page, true, false); |
|
48 | - $total_items = FrmEntry::getRecordCount($s_query); |
|
47 | + $this->items = FrmEntry::getAll($s_query, $order, ' LIMIT '. $start .','. $per_page, true, false); |
|
48 | + $total_items = FrmEntry::getRecordCount($s_query); |
|
49 | 49 | |
50 | 50 | $this->set_pagination_args( array( |
51 | 51 | 'total_items' => $total_items, |
@@ -54,19 +54,19 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | public function no_items() { |
57 | - $s = isset( $_REQUEST['s'] ) ? $_REQUEST['s'] : ''; |
|
58 | - if ( ! empty($s) ) { |
|
59 | - _e( 'No Entries Found', 'formidable' ); |
|
60 | - return; |
|
61 | - } |
|
62 | - |
|
63 | - $form_id = $form = $this->params['form']; |
|
64 | - if ( $form_id ) { |
|
65 | - $form = FrmForm::getOne($form_id); |
|
66 | - } |
|
67 | - $colspan = $this->get_column_count(); |
|
68 | - |
|
69 | - include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/no_entries.php'); |
|
57 | + $s = isset( $_REQUEST['s'] ) ? $_REQUEST['s'] : ''; |
|
58 | + if ( ! empty($s) ) { |
|
59 | + _e( 'No Entries Found', 'formidable' ); |
|
60 | + return; |
|
61 | + } |
|
62 | + |
|
63 | + $form_id = $form = $this->params['form']; |
|
64 | + if ( $form_id ) { |
|
65 | + $form = FrmForm::getOne($form_id); |
|
66 | + } |
|
67 | + $colspan = $this->get_column_count(); |
|
68 | + |
|
69 | + include(FrmAppHelper::plugin_path() .'/classes/views/frm-entries/no_entries.php'); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | public function search_box( $text, $input_id ) { |
@@ -74,12 +74,12 @@ discard block |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
77 | - * Gets the name of the primary column in the Entries screen |
|
78 | - * |
|
79 | - * @since 2.0.14 |
|
80 | - * |
|
81 | - * @return string $primary_column |
|
82 | - */ |
|
77 | + * Gets the name of the primary column in the Entries screen |
|
78 | + * |
|
79 | + * @since 2.0.14 |
|
80 | + * |
|
81 | + * @return string $primary_column |
|
82 | + */ |
|
83 | 83 | protected function get_primary_column_name() { |
84 | 84 | $columns = get_column_headers( $this->screen ); |
85 | 85 | $hidden = get_hidden_columns( $this->screen ); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | |
104 | 104 | $this->get_actions( $actions, $item, $view_link ); |
105 | 105 | |
106 | - $action_links = $this->row_actions( $actions ); |
|
106 | + $action_links = $this->row_actions( $actions ); |
|
107 | 107 | |
108 | 108 | // Set up the checkbox ( because the user is editable, otherwise its empty ) |
109 | 109 | $checkbox = "<input type='checkbox' name='item-action[]' id='cb-item-action-{$item->id}' value='{$item->id}' />"; |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $r = "<tr id='item-action-{$item->id}'$style>"; |
112 | 112 | |
113 | 113 | list( $columns, $hidden, , $primary ) = $this->get_column_info(); |
114 | - $action_col = false; |
|
114 | + $action_col = false; |
|
115 | 115 | |
116 | 116 | foreach ( $columns as $column_name => $column_display_name ) { |
117 | 117 | $class = $column_name .' column-'. $column_name; |
@@ -123,14 +123,14 @@ discard block |
||
123 | 123 | if ( in_array( $column_name, $hidden ) ) { |
124 | 124 | $class .= ' frm_hidden'; |
125 | 125 | } else if ( ! $action_col && ! in_array( $column_name, array( 'cb', 'id', 'form_id', 'post_id' ) ) ) { |
126 | - $action_col = $column_name; |
|
127 | - } |
|
126 | + $action_col = $column_name; |
|
127 | + } |
|
128 | 128 | |
129 | 129 | $attributes = 'class="' . esc_attr( $class ) . '"'; |
130 | 130 | unset($class); |
131 | 131 | $attributes .= ' data-colname="' . $column_display_name . '"'; |
132 | 132 | |
133 | - $col_name = preg_replace('/^('. $this->params['form'] .'_)/', '', $column_name); |
|
133 | + $col_name = preg_replace('/^('. $this->params['form'] .'_)/', '', $column_name); |
|
134 | 134 | $this->column_name = $col_name; |
135 | 135 | |
136 | 136 | switch ( $col_name ) { |
@@ -140,30 +140,30 @@ discard block |
||
140 | 140 | case 'ip': |
141 | 141 | case 'id': |
142 | 142 | case 'item_key': |
143 | - $val = $item->{$col_name}; |
|
144 | - break; |
|
143 | + $val = $item->{$col_name}; |
|
144 | + break; |
|
145 | 145 | case 'name': |
146 | 146 | case 'description': |
147 | - $val = FrmAppHelper::truncate(strip_tags($item->{$col_name}), 100); |
|
148 | - break; |
|
147 | + $val = FrmAppHelper::truncate(strip_tags($item->{$col_name}), 100); |
|
148 | + break; |
|
149 | 149 | case 'created_at': |
150 | 150 | case 'updated_at': |
151 | - $date = FrmAppHelper::get_formatted_time($item->{$col_name}); |
|
151 | + $date = FrmAppHelper::get_formatted_time($item->{$col_name}); |
|
152 | 152 | $val = '<abbr title="' . esc_attr( FrmAppHelper::get_formatted_time( $item->{$col_name}, '', 'g:i:s A' ) ) . '">' . $date . '</abbr>'; |
153 | 153 | break; |
154 | 154 | case 'is_draft': |
155 | - $val = empty($item->is_draft) ? __( 'No') : __( 'Yes'); |
|
156 | - break; |
|
155 | + $val = empty($item->is_draft) ? __( 'No') : __( 'Yes'); |
|
156 | + break; |
|
157 | 157 | case 'form_id': |
158 | - $val = FrmFormsHelper::edit_form_link($item->form_id); |
|
159 | - break; |
|
158 | + $val = FrmFormsHelper::edit_form_link($item->form_id); |
|
159 | + break; |
|
160 | 160 | case 'post_id': |
161 | - $val = FrmAppHelper::post_edit_link($item->post_id); |
|
162 | - break; |
|
161 | + $val = FrmAppHelper::post_edit_link($item->post_id); |
|
162 | + break; |
|
163 | 163 | case 'user_id': |
164 | - $user = get_userdata($item->user_id); |
|
165 | - $val = $user->user_login; |
|
166 | - break; |
|
164 | + $user = get_userdata($item->user_id); |
|
165 | + $val = $user->user_login; |
|
166 | + break; |
|
167 | 167 | default: |
168 | 168 | $val = apply_filters( 'frm_entries_' . $col_name . '_column', false, compact( 'item' ) ); |
169 | 169 | if ( $val === false ) { |
@@ -173,15 +173,15 @@ discard block |
||
173 | 173 | } |
174 | 174 | |
175 | 175 | if ( isset( $val ) ) { |
176 | - $r .= "<td $attributes>"; |
|
176 | + $r .= "<td $attributes>"; |
|
177 | 177 | if ( $column_name == $action_col ) { |
178 | 178 | $edit_link = '?page=formidable-entries&frm_action=edit&id='. $item->id; |
179 | 179 | $r .= '<a href="' . esc_url( isset( $actions['edit'] ) ? $edit_link : $view_link ) . '" class="row-title" >' . $val . '</a> '; |
180 | - $r .= $action_links; |
|
180 | + $r .= $action_links; |
|
181 | 181 | } else { |
182 | - $r .= $val; |
|
183 | - } |
|
184 | - $r .= '</td>'; |
|
182 | + $r .= $val; |
|
183 | + } |
|
184 | + $r .= '</td>'; |
|
185 | 185 | } |
186 | 186 | unset($val); |
187 | 187 | } |
@@ -190,19 +190,19 @@ discard block |
||
190 | 190 | return $r; |
191 | 191 | } |
192 | 192 | |
193 | - /** |
|
194 | - * @param string $view_link |
|
195 | - */ |
|
196 | - private function get_actions( &$actions, $item, $view_link ) { |
|
193 | + /** |
|
194 | + * @param string $view_link |
|
195 | + */ |
|
196 | + private function get_actions( &$actions, $item, $view_link ) { |
|
197 | 197 | $actions['view'] = '<a href="' . esc_url( $view_link ) . '">'. __( 'View', 'formidable' ) .'</a>'; |
198 | 198 | |
199 | - if ( current_user_can('frm_delete_entries') ) { |
|
200 | - $delete_link = '?page=formidable-entries&frm_action=destroy&id='. $item->id .'&form='. $this->params['form']; |
|
199 | + if ( current_user_can('frm_delete_entries') ) { |
|
200 | + $delete_link = '?page=formidable-entries&frm_action=destroy&id='. $item->id .'&form='. $this->params['form']; |
|
201 | 201 | $actions['delete'] = '<a href="' . esc_url( wp_nonce_url( $delete_link ) ) . '" class="submitdelete" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete that?', 'formidable' ) ) . '\')">' . __( 'Delete' ) . '</a>'; |
202 | - } |
|
202 | + } |
|
203 | 203 | |
204 | - $actions = apply_filters('frm_row_actions', $actions, $item); |
|
205 | - } |
|
204 | + $actions = apply_filters('frm_row_actions', $actions, $item); |
|
205 | + } |
|
206 | 206 | |
207 | 207 | private function get_column_value( $item, &$val ) { |
208 | 208 | $col_name = $this->column_name; |
@@ -11,39 +11,39 @@ discard block |
||
11 | 11 | } |
12 | 12 | |
13 | 13 | public static function get_direct_link( $key, $form = false ) { |
14 | - $target_url = esc_url(admin_url('admin-ajax.php') . '?action=frm_forms_preview&form='. $key); |
|
15 | - $target_url = apply_filters('frm_direct_link', $target_url, $key, $form); |
|
16 | - |
|
17 | - return $target_url; |
|
18 | - } |
|
19 | - |
|
20 | - public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) { |
|
21 | - $defaults = array( |
|
22 | - 'blank' => true, |
|
23 | - 'field_id' => false, |
|
24 | - 'onchange' => false, |
|
25 | - 'exclude' => false, |
|
26 | - 'class' => '', |
|
14 | + $target_url = esc_url(admin_url('admin-ajax.php') . '?action=frm_forms_preview&form='. $key); |
|
15 | + $target_url = apply_filters('frm_direct_link', $target_url, $key, $form); |
|
16 | + |
|
17 | + return $target_url; |
|
18 | + } |
|
19 | + |
|
20 | + public static function forms_dropdown( $field_name, $field_value = '', $args = array() ) { |
|
21 | + $defaults = array( |
|
22 | + 'blank' => true, |
|
23 | + 'field_id' => false, |
|
24 | + 'onchange' => false, |
|
25 | + 'exclude' => false, |
|
26 | + 'class' => '', |
|
27 | 27 | 'inc_children' => 'exclude', |
28 | - ); |
|
29 | - $args = wp_parse_args( $args, $defaults ); |
|
28 | + ); |
|
29 | + $args = wp_parse_args( $args, $defaults ); |
|
30 | 30 | |
31 | - if ( ! $args['field_id'] ) { |
|
32 | - $args['field_id'] = $field_name; |
|
33 | - } |
|
31 | + if ( ! $args['field_id'] ) { |
|
32 | + $args['field_id'] = $field_name; |
|
33 | + } |
|
34 | 34 | |
35 | 35 | $query = array(); |
36 | - if ( $args['exclude'] ) { |
|
36 | + if ( $args['exclude'] ) { |
|
37 | 37 | $query['id !'] = $args['exclude']; |
38 | - } |
|
38 | + } |
|
39 | 39 | |
40 | - $where = apply_filters('frm_forms_dropdown', $query, $field_name); |
|
40 | + $where = apply_filters('frm_forms_dropdown', $query, $field_name); |
|
41 | 41 | $forms = FrmForm::get_published_forms( $where, 999, $args['inc_children'] ); |
42 | 42 | $add_html = array(); |
43 | 43 | self::add_html_attr( $args['onchange'], 'onchange', $add_html ); |
44 | 44 | self::add_html_attr( $args['class'], 'class', $add_html ); |
45 | 45 | |
46 | - ?> |
|
46 | + ?> |
|
47 | 47 | <select name="<?php echo esc_attr( $field_name ); ?>" id="<?php echo esc_attr( $args['field_id'] ) ?>" <?php echo implode( ' ', $add_html ); ?>> |
48 | 48 | <?php if ( $args['blank'] ) { ?> |
49 | 49 | <option value=""><?php echo ( $args['blank'] == 1 ) ? ' ' : '- ' . esc_attr( $args['blank'] ) . ' -'; ?></option> |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | <?php } ?> |
56 | 56 | </select> |
57 | 57 | <?php |
58 | - } |
|
58 | + } |
|
59 | 59 | |
60 | 60 | /** |
61 | 61 | * @param string $class |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
73 | - public static function form_switcher() { |
|
73 | + public static function form_switcher() { |
|
74 | 74 | $where = apply_filters( 'frm_forms_dropdown', array(), '' ); |
75 | 75 | $forms = FrmForm::get_published_forms( $where ); |
76 | 76 | |
@@ -79,32 +79,32 @@ discard block |
||
79 | 79 | unset( $args['form'] ); |
80 | 80 | } else if ( isset( $_GET['form']) && ! isset( $_GET['id'] ) ) { |
81 | 81 | unset( $args['id'] ); |
82 | - } |
|
82 | + } |
|
83 | 83 | |
84 | 84 | $frm_action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ); |
85 | 85 | if ( FrmAppHelper::is_admin_page( 'formidable-entries' ) && in_array( $frm_action, array( 'edit', 'show', 'destroy_all' ) ) ) { |
86 | - $args['frm_action'] = 'list'; |
|
87 | - $args['form'] = 0; |
|
86 | + $args['frm_action'] = 'list'; |
|
87 | + $args['form'] = 0; |
|
88 | 88 | } else if ( FrmAppHelper::is_admin_page('formidable' ) && in_array( $frm_action, array( 'new', 'duplicate' ) ) ) { |
89 | - $args['frm_action'] = 'edit'; |
|
89 | + $args['frm_action'] = 'edit'; |
|
90 | 90 | } else if ( isset( $_GET['post'] ) ) { |
91 | - $args['form'] = 0; |
|
92 | - $base = admin_url('edit.php?post_type=frm_display'); |
|
93 | - } |
|
91 | + $args['form'] = 0; |
|
92 | + $base = admin_url('edit.php?post_type=frm_display'); |
|
93 | + } |
|
94 | 94 | |
95 | - ?> |
|
95 | + ?> |
|
96 | 96 | <li class="dropdown last" id="frm_bs_dropdown"> |
97 | 97 | <a href="#" id="frm-navbarDrop" class="frm-dropdown-toggle" data-toggle="dropdown"><?php _e( 'Switch Form', 'formidable' ) ?> <b class="caret"></b></a> |
98 | 98 | <ul class="frm-dropdown-menu frm-on-top" role="menu" aria-labelledby="frm-navbarDrop"> |
99 | 99 | <?php |
100 | 100 | foreach ( $forms as $form ) { |
101 | 101 | if ( isset( $args['id'] ) ) { |
102 | - $args['id'] = $form->id; |
|
102 | + $args['id'] = $form->id; |
|
103 | 103 | } |
104 | - if ( isset( $args['form'] ) ) { |
|
105 | - $args['form'] = $form->id; |
|
104 | + if ( isset( $args['form'] ) ) { |
|
105 | + $args['form'] = $form->id; |
|
106 | 106 | } |
107 | - ?> |
|
107 | + ?> |
|
108 | 108 | <li><a href="<?php echo esc_url( isset( $base ) ? add_query_arg( $args, $base ) : add_query_arg( $args ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)') : FrmAppHelper::truncate( $form->name, 33 ) ); ?></a></li> |
109 | 109 | <?php |
110 | 110 | unset( $form ); |
@@ -112,12 +112,12 @@ discard block |
||
112 | 112 | </ul> |
113 | 113 | </li> |
114 | 114 | <?php |
115 | - } |
|
115 | + } |
|
116 | 116 | |
117 | 117 | public static function get_sortable_classes( $col, $sort_col, $sort_dir ) { |
118 | - echo ($sort_col == $col) ? 'sorted' : 'sortable'; |
|
119 | - echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc'; |
|
120 | - } |
|
118 | + echo ($sort_col == $col) ? 'sorted' : 'sortable'; |
|
119 | + echo ($sort_col == $col && $sort_dir == 'desc') ? ' asc' : ' desc'; |
|
120 | + } |
|
121 | 121 | |
122 | 122 | public static function get_success_message( $atts ) { |
123 | 123 | $message = apply_filters( 'frm_content', $atts['message'], $atts['form'], $atts['entry_id'] ); |
@@ -125,110 +125,110 @@ discard block |
||
125 | 125 | return $message; |
126 | 126 | } |
127 | 127 | |
128 | - /** |
|
129 | - * Used when a form is created |
|
130 | - */ |
|
131 | - public static function setup_new_vars( $values = array() ) { |
|
132 | - global $wpdb; |
|
128 | + /** |
|
129 | + * Used when a form is created |
|
130 | + */ |
|
131 | + public static function setup_new_vars( $values = array() ) { |
|
132 | + global $wpdb; |
|
133 | 133 | |
134 | - if ( ! empty( $values ) ) { |
|
135 | - $post_values = $values; |
|
136 | - } else { |
|
137 | - $values = array(); |
|
138 | - $post_values = isset($_POST) ? $_POST : array(); |
|
139 | - } |
|
134 | + if ( ! empty( $values ) ) { |
|
135 | + $post_values = $values; |
|
136 | + } else { |
|
137 | + $values = array(); |
|
138 | + $post_values = isset($_POST) ? $_POST : array(); |
|
139 | + } |
|
140 | 140 | |
141 | 141 | foreach ( array( 'name' => '', 'description' => '' ) as $var => $default ) { |
142 | 142 | if ( ! isset( $values[ $var ] ) ) { |
143 | 143 | $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
144 | - } |
|
145 | - } |
|
144 | + } |
|
145 | + } |
|
146 | 146 | |
147 | - $values['description'] = FrmAppHelper::use_wpautop($values['description']); |
|
147 | + $values['description'] = FrmAppHelper::use_wpautop($values['description']); |
|
148 | 148 | |
149 | 149 | foreach ( array( 'form_id' => '', 'logged_in' => '', 'editable' => '', 'default_template' => 0, 'is_template' => 0, 'status' => 'draft', 'parent_form_id' => 0 ) as $var => $default ) { |
150 | - if ( ! isset( $values[ $var ] ) ) { |
|
150 | + if ( ! isset( $values[ $var ] ) ) { |
|
151 | 151 | $values[ $var ] = FrmAppHelper::get_param( $var, $default ); |
152 | - } |
|
153 | - } |
|
152 | + } |
|
153 | + } |
|
154 | 154 | |
155 | - if ( ! isset( $values['form_key'] ) ) { |
|
156 | - $values['form_key'] = ($post_values && isset($post_values['form_key'])) ? $post_values['form_key'] : FrmAppHelper::get_unique_key('', $wpdb->prefix .'frm_forms', 'form_key'); |
|
157 | - } |
|
155 | + if ( ! isset( $values['form_key'] ) ) { |
|
156 | + $values['form_key'] = ($post_values && isset($post_values['form_key'])) ? $post_values['form_key'] : FrmAppHelper::get_unique_key('', $wpdb->prefix .'frm_forms', 'form_key'); |
|
157 | + } |
|
158 | 158 | |
159 | - $values = self::fill_default_opts($values, false, $post_values); |
|
159 | + $values = self::fill_default_opts($values, false, $post_values); |
|
160 | 160 | |
161 | - if ( $post_values && isset($post_values['options']['custom_style']) ) { |
|
162 | - $values['custom_style'] = $post_values['options']['custom_style']; |
|
163 | - } else { |
|
164 | - $frm_settings = FrmAppHelper::get_settings(); |
|
165 | - $values['custom_style'] = ( $frm_settings->load_style != 'none' ); |
|
166 | - } |
|
161 | + if ( $post_values && isset($post_values['options']['custom_style']) ) { |
|
162 | + $values['custom_style'] = $post_values['options']['custom_style']; |
|
163 | + } else { |
|
164 | + $frm_settings = FrmAppHelper::get_settings(); |
|
165 | + $values['custom_style'] = ( $frm_settings->load_style != 'none' ); |
|
166 | + } |
|
167 | 167 | |
168 | - return apply_filters('frm_setup_new_form_vars', $values); |
|
169 | - } |
|
168 | + return apply_filters('frm_setup_new_form_vars', $values); |
|
169 | + } |
|
170 | 170 | |
171 | - /** |
|
172 | - * Used when editing a form |
|
173 | - */ |
|
174 | - public static function setup_edit_vars( $values, $record, $post_values = array() ) { |
|
171 | + /** |
|
172 | + * Used when editing a form |
|
173 | + */ |
|
174 | + public static function setup_edit_vars( $values, $record, $post_values = array() ) { |
|
175 | 175 | if ( empty( $post_values ) ) { |
176 | 176 | $post_values = stripslashes_deep( $_POST ); |
177 | 177 | } |
178 | 178 | |
179 | - $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key; |
|
180 | - $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template; |
|
181 | - $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template; |
|
182 | - $values['status'] = $record->status; |
|
179 | + $values['form_key'] = isset($post_values['form_key']) ? $post_values['form_key'] : $record->form_key; |
|
180 | + $values['default_template'] = isset($post_values['default_template']) ? $post_values['default_template'] : $record->default_template; |
|
181 | + $values['is_template'] = isset($post_values['is_template']) ? $post_values['is_template'] : $record->is_template; |
|
182 | + $values['status'] = $record->status; |
|
183 | 183 | |
184 | - $values = self::fill_default_opts($values, $record, $post_values); |
|
184 | + $values = self::fill_default_opts($values, $record, $post_values); |
|
185 | 185 | |
186 | - return apply_filters('frm_setup_edit_form_vars', $values); |
|
187 | - } |
|
186 | + return apply_filters('frm_setup_edit_form_vars', $values); |
|
187 | + } |
|
188 | 188 | |
189 | 189 | public static function fill_default_opts( $values, $record, $post_values ) { |
190 | 190 | |
191 | - $defaults = self::get_default_opts(); |
|
191 | + $defaults = self::get_default_opts(); |
|
192 | 192 | foreach ( $defaults as $var => $default ) { |
193 | - if ( is_array($default) ) { |
|
194 | - if ( ! isset( $values[ $var ] ) ) { |
|
193 | + if ( is_array($default) ) { |
|
194 | + if ( ! isset( $values[ $var ] ) ) { |
|
195 | 195 | $values[ $var ] = ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : array(); |
196 | - } |
|
196 | + } |
|
197 | 197 | |
198 | - foreach ( $default as $k => $v ) { |
|
198 | + foreach ( $default as $k => $v ) { |
|
199 | 199 | $values[ $var ][ $k ] = ( $post_values && isset( $post_values[ $var ][ $k ] ) ) ? $post_values[ $var ][ $k ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) ) ? $record->options[ $var ][ $k ] : $v); |
200 | 200 | |
201 | - if ( is_array( $v ) ) { |
|
202 | - foreach ( $v as $k1 => $v1 ) { |
|
201 | + if ( is_array( $v ) ) { |
|
202 | + foreach ( $v as $k1 => $v1 ) { |
|
203 | 203 | $values[ $var ][ $k ][ $k1 ] = ( $post_values && isset( $post_values[ $var ][ $k ][ $k1 ] ) ) ? $post_values[ $var ][ $k ][ $k1 ] : ( ( $record && isset( $record->options[ $var ] ) && isset( $record->options[ $var ][ $k ] ) && isset( $record->options[ $var ][ $k ][ $k1 ] ) ) ? $record->options[ $var ][ $k ][ $k1 ] : $v1 ); |
204 | - unset( $k1, $v1 ); |
|
205 | - } |
|
206 | - } |
|
204 | + unset( $k1, $v1 ); |
|
205 | + } |
|
206 | + } |
|
207 | 207 | |
208 | - unset($k, $v); |
|
209 | - } |
|
210 | - } else { |
|
208 | + unset($k, $v); |
|
209 | + } |
|
210 | + } else { |
|
211 | 211 | $values[ $var ] = ( $post_values && isset( $post_values['options'][ $var ] ) ) ? $post_values['options'][ $var ] : ( ( $record && isset( $record->options[ $var ] ) ) ? $record->options[ $var ] : $default ); |
212 | - } |
|
212 | + } |
|
213 | 213 | |
214 | - unset($var, $default); |
|
215 | - } |
|
214 | + unset($var, $default); |
|
215 | + } |
|
216 | 216 | |
217 | - return $values; |
|
218 | - } |
|
217 | + return $values; |
|
218 | + } |
|
219 | 219 | |
220 | - public static function get_default_opts() { |
|
221 | - $frm_settings = FrmAppHelper::get_settings(); |
|
220 | + public static function get_default_opts() { |
|
221 | + $frm_settings = FrmAppHelper::get_settings(); |
|
222 | 222 | |
223 | - return array( |
|
224 | - 'submit_value' => $frm_settings->submit_value, 'success_action' => 'message', |
|
225 | - 'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '', |
|
226 | - 'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1, |
|
227 | - 'before_html' => self::get_default_html('before'), |
|
228 | - 'after_html' => '', |
|
229 | - 'submit_html' => self::get_default_html('submit'), |
|
230 | - ); |
|
231 | - } |
|
223 | + return array( |
|
224 | + 'submit_value' => $frm_settings->submit_value, 'success_action' => 'message', |
|
225 | + 'success_msg' => $frm_settings->success_msg, 'show_form' => 0, 'akismet' => '', |
|
226 | + 'no_save' => 0, 'ajax_load' => 0, 'form_class' => '', 'custom_style' => 1, |
|
227 | + 'before_html' => self::get_default_html('before'), |
|
228 | + 'after_html' => '', |
|
229 | + 'submit_html' => self::get_default_html('submit'), |
|
230 | + ); |
|
231 | + } |
|
232 | 232 | |
233 | 233 | /** |
234 | 234 | * @param array $options |
@@ -243,15 +243,15 @@ discard block |
||
243 | 243 | } |
244 | 244 | } |
245 | 245 | |
246 | - /** |
|
247 | - * @param string $loc |
|
248 | - */ |
|
246 | + /** |
|
247 | + * @param string $loc |
|
248 | + */ |
|
249 | 249 | public static function get_default_html( $loc ) { |
250 | 250 | if ( $loc == 'submit' ) { |
251 | - $sending = __( 'Sending', 'formidable' ); |
|
252 | - $draft_link = self::get_draft_link(); |
|
253 | - $img = '[frmurl]/images/ajax_loader.gif'; |
|
254 | - $default_html = <<<SUBMIT_HTML |
|
251 | + $sending = __( 'Sending', 'formidable' ); |
|
252 | + $draft_link = self::get_draft_link(); |
|
253 | + $img = '[frmurl]/images/ajax_loader.gif'; |
|
254 | + $default_html = <<<SUBMIT_HTML |
|
255 | 255 | <div class="frm_submit"> |
256 | 256 | [if back_button]<input type="button" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook] />[/if back_button] |
257 | 257 | <input type="submit" value="[button_label]" [button_action] /> |
@@ -260,49 +260,49 @@ discard block |
||
260 | 260 | </div> |
261 | 261 | SUBMIT_HTML; |
262 | 262 | } else if ( $loc == 'before' ) { |
263 | - $default_html = <<<BEFORE_HTML |
|
263 | + $default_html = <<<BEFORE_HTML |
|
264 | 264 | <legend class="frm_hidden">[form_name]</legend> |
265 | 265 | [if form_name]<h3>[form_name]</h3>[/if form_name] |
266 | 266 | [if form_description]<div class="frm_description">[form_description]</div>[/if form_description] |
267 | 267 | BEFORE_HTML; |
268 | 268 | } else { |
269 | - $default_html = ''; |
|
270 | - } |
|
269 | + $default_html = ''; |
|
270 | + } |
|
271 | 271 | |
272 | - return $default_html; |
|
273 | - } |
|
272 | + return $default_html; |
|
273 | + } |
|
274 | 274 | |
275 | - public static function get_draft_link() { |
|
276 | - $link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]'; |
|
277 | - return $link; |
|
278 | - } |
|
275 | + public static function get_draft_link() { |
|
276 | + $link = '[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]'; |
|
277 | + return $link; |
|
278 | + } |
|
279 | 279 | |
280 | 280 | public static function get_custom_submit( $html, $form, $submit, $form_action, $values ) { |
281 | - $button = self::replace_shortcodes($html, $form, $submit, $form_action, $values); |
|
282 | - if ( ! strpos($button, '[button_action]') ) { |
|
283 | - return; |
|
284 | - } |
|
281 | + $button = self::replace_shortcodes($html, $form, $submit, $form_action, $values); |
|
282 | + if ( ! strpos($button, '[button_action]') ) { |
|
283 | + return; |
|
284 | + } |
|
285 | 285 | |
286 | - $button_parts = explode('[button_action]', $button); |
|
287 | - echo $button_parts[0]; |
|
288 | - //echo ' id="frm_submit_"'; |
|
286 | + $button_parts = explode('[button_action]', $button); |
|
287 | + echo $button_parts[0]; |
|
288 | + //echo ' id="frm_submit_"'; |
|
289 | 289 | |
290 | - $classes = apply_filters('frm_submit_button_class', array(), $form); |
|
291 | - if ( ! empty($classes) ) { |
|
290 | + $classes = apply_filters('frm_submit_button_class', array(), $form); |
|
291 | + if ( ! empty($classes) ) { |
|
292 | 292 | echo ' class="' . esc_attr( implode( ' ', $classes ) ) . '"'; |
293 | - } |
|
294 | - |
|
295 | - do_action('frm_submit_button_action', $form, $form_action); |
|
296 | - echo $button_parts[1]; |
|
297 | - } |
|
298 | - |
|
299 | - /** |
|
300 | - * Automatically add end section fields if they don't exist (2.0 migration) |
|
301 | - * @since 2.0 |
|
302 | - * |
|
303 | - * @param boolean $reset_fields |
|
304 | - */ |
|
305 | - public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) { |
|
293 | + } |
|
294 | + |
|
295 | + do_action('frm_submit_button_action', $form, $form_action); |
|
296 | + echo $button_parts[1]; |
|
297 | + } |
|
298 | + |
|
299 | + /** |
|
300 | + * Automatically add end section fields if they don't exist (2.0 migration) |
|
301 | + * @since 2.0 |
|
302 | + * |
|
303 | + * @param boolean $reset_fields |
|
304 | + */ |
|
305 | + public static function auto_add_end_section_fields( $form, $fields, &$reset_fields ) { |
|
306 | 306 | if ( empty( $fields ) ) { |
307 | 307 | return; |
308 | 308 | } |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | $open = $prev_order = false; |
312 | 312 | $add_order = 0; |
313 | 313 | $last_field = false; |
314 | - foreach ( $fields as $field ) { |
|
314 | + foreach ( $fields as $field ) { |
|
315 | 315 | if ( $prev_order === $field->field_order ) { |
316 | 316 | $add_order++; |
317 | 317 | } |
@@ -322,48 +322,48 @@ discard block |
||
322 | 322 | FrmField::update( $field->id, array( 'field_order' => $field->field_order ) ); |
323 | 323 | } |
324 | 324 | |
325 | - switch ( $field->type ) { |
|
326 | - case 'divider': |
|
327 | - // create an end section if open |
|
325 | + switch ( $field->type ) { |
|
326 | + case 'divider': |
|
327 | + // create an end section if open |
|
328 | 328 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' ); |
329 | 329 | |
330 | - // mark it open for the next end section |
|
331 | - $open = true; |
|
332 | - break; |
|
333 | - case 'break'; |
|
330 | + // mark it open for the next end section |
|
331 | + $open = true; |
|
332 | + break; |
|
333 | + case 'break'; |
|
334 | 334 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $field, 'move' ); |
335 | - break; |
|
336 | - case 'end_divider': |
|
337 | - if ( ! $open ) { |
|
338 | - // the section isn't open, so this is an extra field that needs to be removed |
|
339 | - FrmField::destroy( $field->id ); |
|
340 | - $reset_fields = true; |
|
341 | - } |
|
342 | - |
|
343 | - // There is already an end section here, so there is no need to create one |
|
344 | - $open = false; |
|
345 | - } |
|
335 | + break; |
|
336 | + case 'end_divider': |
|
337 | + if ( ! $open ) { |
|
338 | + // the section isn't open, so this is an extra field that needs to be removed |
|
339 | + FrmField::destroy( $field->id ); |
|
340 | + $reset_fields = true; |
|
341 | + } |
|
342 | + |
|
343 | + // There is already an end section here, so there is no need to create one |
|
344 | + $open = false; |
|
345 | + } |
|
346 | 346 | $prev_order = $field->field_order; |
347 | 347 | |
348 | 348 | $last_field = $field; |
349 | 349 | unset( $field ); |
350 | - } |
|
350 | + } |
|
351 | 351 | |
352 | 352 | self::maybe_create_end_section( $open, $reset_fields, $add_order, $end_section_values, $last_field ); |
353 | - } |
|
353 | + } |
|
354 | 354 | |
355 | 355 | /** |
356 | 356 | * Create end section field if it doesn't exist. This is for migration from < 2.0 |
357 | 357 | * Fix any ordering that may be messed up |
358 | 358 | */ |
359 | 359 | public static function maybe_create_end_section( &$open, &$reset_fields, &$add_order, $end_section_values, $field, $move = 'no' ) { |
360 | - if ( ! $open ) { |
|
361 | - return; |
|
362 | - } |
|
360 | + if ( ! $open ) { |
|
361 | + return; |
|
362 | + } |
|
363 | 363 | |
364 | 364 | $end_section_values['field_order'] = $field->field_order + 1; |
365 | 365 | |
366 | - FrmField::create( $end_section_values ); |
|
366 | + FrmField::create( $end_section_values ); |
|
367 | 367 | |
368 | 368 | if ( $move == 'move' ) { |
369 | 369 | // bump the order of current field unless we're at the end of the form |
@@ -371,38 +371,38 @@ discard block |
||
371 | 371 | } |
372 | 372 | |
373 | 373 | $add_order += 2; |
374 | - $open = false; |
|
375 | - $reset_fields = true; |
|
376 | - } |
|
374 | + $open = false; |
|
375 | + $reset_fields = true; |
|
376 | + } |
|
377 | 377 | |
378 | - public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) { |
|
378 | + public static function replace_shortcodes( $html, $form, $title = false, $description = false, $values = array() ) { |
|
379 | 379 | foreach ( array( 'form_name' => $title, 'form_description' => $description, 'entry_key' => true ) as $code => $show ) { |
380 | - if ( $code == 'form_name' ) { |
|
381 | - $replace_with = $form->name; |
|
382 | - } else if ( $code == 'form_description' ) { |
|
383 | - $replace_with = FrmAppHelper::use_wpautop($form->description); |
|
384 | - } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) { |
|
385 | - $replace_with = FrmAppHelper::simple_get( 'entry' ); |
|
386 | - } else { |
|
387 | - $replace_with = ''; |
|
388 | - } |
|
380 | + if ( $code == 'form_name' ) { |
|
381 | + $replace_with = $form->name; |
|
382 | + } else if ( $code == 'form_description' ) { |
|
383 | + $replace_with = FrmAppHelper::use_wpautop($form->description); |
|
384 | + } else if ( $code == 'entry_key' && isset($_GET) && isset($_GET['entry']) ) { |
|
385 | + $replace_with = FrmAppHelper::simple_get( 'entry' ); |
|
386 | + } else { |
|
387 | + $replace_with = ''; |
|
388 | + } |
|
389 | 389 | |
390 | - FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html ); |
|
391 | - } |
|
390 | + FrmFieldsHelper::remove_inline_conditions( ( FrmAppHelper::is_true($show) && $replace_with != '' ), $code, $replace_with, $html ); |
|
391 | + } |
|
392 | 392 | |
393 | - //replace [form_key] |
|
394 | - $html = str_replace('[form_key]', $form->form_key, $html); |
|
393 | + //replace [form_key] |
|
394 | + $html = str_replace('[form_key]', $form->form_key, $html); |
|
395 | 395 | |
396 | - //replace [frmurl] |
|
397 | - $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html); |
|
396 | + //replace [frmurl] |
|
397 | + $html = str_replace('[frmurl]', FrmFieldsHelper::dynamic_default_values( 'frmurl' ), $html); |
|
398 | 398 | |
399 | 399 | if ( strpos( $html, '[button_label]' ) ) { |
400 | 400 | add_filter( 'frm_submit_button', 'FrmFormsHelper::submit_button_label', 1 ); |
401 | 401 | $replace_with = apply_filters( 'frm_submit_button', $title, $form ); |
402 | 402 | $html = str_replace( '[button_label]', $replace_with, $html ); |
403 | - } |
|
403 | + } |
|
404 | 404 | |
405 | - $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values); |
|
405 | + $html = apply_filters('frm_form_replace_shortcodes', $html, $form, $values); |
|
406 | 406 | |
407 | 407 | if ( strpos( $html, '[if back_button]' ) ) { |
408 | 408 | $html = preg_replace( '/(\[if\s+back_button\])(.*?)(\[\/if\s+back_button\])/mis', '', $html ); |
@@ -416,32 +416,32 @@ discard block |
||
416 | 416 | $html = do_shortcode( $html ); |
417 | 417 | } |
418 | 418 | |
419 | - return $html; |
|
420 | - } |
|
419 | + return $html; |
|
420 | + } |
|
421 | 421 | |
422 | 422 | public static function submit_button_label( $submit ) { |
423 | - if ( ! $submit || empty($submit) ) { |
|
424 | - $frm_settings = FrmAppHelper::get_settings(); |
|
425 | - $submit = $frm_settings->submit_value; |
|
426 | - } |
|
423 | + if ( ! $submit || empty($submit) ) { |
|
424 | + $frm_settings = FrmAppHelper::get_settings(); |
|
425 | + $submit = $frm_settings->submit_value; |
|
426 | + } |
|
427 | 427 | |
428 | - return $submit; |
|
429 | - } |
|
428 | + return $submit; |
|
429 | + } |
|
430 | 430 | |
431 | 431 | public static function get_form_style_class( $form = false ) { |
432 | - $style = self::get_form_style($form); |
|
433 | - $class = ' with_frm_style'; |
|
434 | - |
|
435 | - if ( empty($style) ) { |
|
436 | - if ( FrmAppHelper::is_admin_page('formidable-entries') ) { |
|
437 | - return $class; |
|
438 | - } else { |
|
439 | - return; |
|
440 | - } |
|
441 | - } |
|
442 | - |
|
443 | - //If submit button needs to be inline or centered |
|
444 | - if ( is_object($form) ) { |
|
432 | + $style = self::get_form_style($form); |
|
433 | + $class = ' with_frm_style'; |
|
434 | + |
|
435 | + if ( empty($style) ) { |
|
436 | + if ( FrmAppHelper::is_admin_page('formidable-entries') ) { |
|
437 | + return $class; |
|
438 | + } else { |
|
439 | + return; |
|
440 | + } |
|
441 | + } |
|
442 | + |
|
443 | + //If submit button needs to be inline or centered |
|
444 | + if ( is_object($form) ) { |
|
445 | 445 | $form = $form->options; |
446 | 446 | } |
447 | 447 | |
@@ -453,17 +453,17 @@ discard block |
||
453 | 453 | $class .= ' frm_center_submit'; |
454 | 454 | } |
455 | 455 | |
456 | - $class = apply_filters('frm_add_form_style_class', $class, $style); |
|
456 | + $class = apply_filters('frm_add_form_style_class', $class, $style); |
|
457 | 457 | |
458 | - return $class; |
|
459 | - } |
|
458 | + return $class; |
|
459 | + } |
|
460 | 460 | |
461 | - /** |
|
462 | - * @param string|boolean $form |
|
463 | - * |
|
464 | - * @return string |
|
465 | - */ |
|
466 | - public static function get_form_style( $form ) { |
|
461 | + /** |
|
462 | + * @param string|boolean $form |
|
463 | + * |
|
464 | + * @return string |
|
465 | + */ |
|
466 | + public static function get_form_style( $form ) { |
|
467 | 467 | $style = 1; |
468 | 468 | if ( empty( $form ) || 'default' == 'form' ) { |
469 | 469 | return $style; |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | $style = ( $form && is_object( $form ) && isset( $form->options['custom_style'] ) ) ? $form->options['custom_style'] : $style; |
484 | 484 | |
485 | 485 | return $style; |
486 | - } |
|
486 | + } |
|
487 | 487 | |
488 | 488 | /** |
489 | 489 | * Display the validation error messages when an entry is submitted |
@@ -537,74 +537,74 @@ discard block |
||
537 | 537 | } |
538 | 538 | |
539 | 539 | public static function get_scroll_js( $form_id ) { |
540 | - ?><script type="text/javascript">jQuery(document).ready(function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php |
|
541 | - } |
|
540 | + ?><script type="text/javascript">jQuery(document).ready(function(){frmFrontForm.scrollMsg(<?php echo (int) $form_id ?>);})</script><?php |
|
541 | + } |
|
542 | 542 | |
543 | 543 | public static function edit_form_link( $form_id ) { |
544 | - if ( is_object($form_id) ) { |
|
545 | - $form = $form_id; |
|
546 | - $name = $form->name; |
|
547 | - $form_id = $form->id; |
|
548 | - } else { |
|
549 | - $name = FrmForm::getName($form_id); |
|
550 | - } |
|
551 | - |
|
552 | - if ( $form_id ) { |
|
544 | + if ( is_object($form_id) ) { |
|
545 | + $form = $form_id; |
|
546 | + $name = $form->name; |
|
547 | + $form_id = $form->id; |
|
548 | + } else { |
|
549 | + $name = FrmForm::getName($form_id); |
|
550 | + } |
|
551 | + |
|
552 | + if ( $form_id ) { |
|
553 | 553 | $val = '<a href="' . esc_url( admin_url( 'admin.php' ) . '?page=formidable&frm_action=edit&id=' . $form_id ) . '">' . ( '' == $name ? __( '(no title)' ) : FrmAppHelper::truncate( $name, 40 ) ) . '</a>'; |
554 | - } else { |
|
555 | - $val = ''; |
|
556 | - } |
|
554 | + } else { |
|
555 | + $val = ''; |
|
556 | + } |
|
557 | 557 | |
558 | - return $val; |
|
558 | + return $val; |
|
559 | 559 | } |
560 | 560 | |
561 | 561 | public static function delete_trash_link( $id, $status, $length = 'long' ) { |
562 | - $link = ''; |
|
563 | - $labels = array( |
|
564 | - 'restore' => array( |
|
565 | - 'long' => __( 'Restore from Trash', 'formidable' ), |
|
566 | - 'short' => __( 'Restore', 'formidable' ), |
|
567 | - ), |
|
568 | - 'trash' => array( |
|
569 | - 'long' => __( 'Move to Trash', 'formidable' ), |
|
570 | - 'short' => __( 'Trash', 'formidable' ), |
|
571 | - ), |
|
572 | - 'delete' => array( |
|
573 | - 'long' => __( 'Delete Permanently', 'formidable' ), |
|
574 | - 'short' => __( 'Delete', 'formidable' ), |
|
575 | - ), |
|
576 | - ); |
|
577 | - |
|
578 | - $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
579 | - $base_url = '?page=formidable&form_type='. $current_page .'&id='. $id; |
|
580 | - if ( 'trash' == $status ) { |
|
562 | + $link = ''; |
|
563 | + $labels = array( |
|
564 | + 'restore' => array( |
|
565 | + 'long' => __( 'Restore from Trash', 'formidable' ), |
|
566 | + 'short' => __( 'Restore', 'formidable' ), |
|
567 | + ), |
|
568 | + 'trash' => array( |
|
569 | + 'long' => __( 'Move to Trash', 'formidable' ), |
|
570 | + 'short' => __( 'Trash', 'formidable' ), |
|
571 | + ), |
|
572 | + 'delete' => array( |
|
573 | + 'long' => __( 'Delete Permanently', 'formidable' ), |
|
574 | + 'short' => __( 'Delete', 'formidable' ), |
|
575 | + ), |
|
576 | + ); |
|
577 | + |
|
578 | + $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
579 | + $base_url = '?page=formidable&form_type='. $current_page .'&id='. $id; |
|
580 | + if ( 'trash' == $status ) { |
|
581 | 581 | $link = '<a href="'. esc_url( wp_nonce_url( $base_url . '&frm_action=untrash', 'untrash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['restore'][ $length ] . '</a>'; |
582 | - } else if ( current_user_can('frm_delete_forms') ) { |
|
583 | - if ( EMPTY_TRASH_DAYS ) { |
|
582 | + } else if ( current_user_can('frm_delete_forms') ) { |
|
583 | + if ( EMPTY_TRASH_DAYS ) { |
|
584 | 584 | $link = '<a href="' . esc_url( wp_nonce_url( $base_url . '&frm_action=trash', 'trash_form_' . $id ) ) . '" class="submitdelete deletion">' . $labels['trash'][ $length ] . '</a>'; |
585 | - } else { |
|
585 | + } else { |
|
586 | 586 | $link = '<a href="' . esc_url( wp_nonce_url( $base_url .'&frm_action=destroy', 'destroy_form_' . $id ) ) . '" class="submitdelete deletion" onclick="return confirm(\'' . esc_attr( __( 'Are you sure you want to delete this form and all its entries?', 'formidable' ) ) . '\')">' . $labels['delete'][ $length ] . '</a>'; |
587 | - } |
|
588 | - } |
|
587 | + } |
|
588 | + } |
|
589 | 589 | |
590 | - return $link; |
|
591 | - } |
|
590 | + return $link; |
|
591 | + } |
|
592 | 592 | |
593 | 593 | public static function status_nice_name( $status ) { |
594 | - $nice_names = array( |
|
595 | - 'draft' => __( 'Draft', 'formidable' ), |
|
596 | - 'trash' => __( 'Trash', 'formidable' ), |
|
597 | - 'publish' => __( 'Published', 'formidable' ), |
|
598 | - ); |
|
599 | - |
|
600 | - if ( ! in_array($status, array_keys($nice_names)) ) { |
|
601 | - $status = 'publish'; |
|
602 | - } |
|
594 | + $nice_names = array( |
|
595 | + 'draft' => __( 'Draft', 'formidable' ), |
|
596 | + 'trash' => __( 'Trash', 'formidable' ), |
|
597 | + 'publish' => __( 'Published', 'formidable' ), |
|
598 | + ); |
|
599 | + |
|
600 | + if ( ! in_array($status, array_keys($nice_names)) ) { |
|
601 | + $status = 'publish'; |
|
602 | + } |
|
603 | 603 | |
604 | 604 | $name = $nice_names[ $status ]; |
605 | 605 | |
606 | - return $name; |
|
607 | - } |
|
606 | + return $name; |
|
607 | + } |
|
608 | 608 | |
609 | 609 | public static function get_params() { |
610 | 610 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::list_page_params' ); |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | } |
5 | 5 | |
6 | 6 | class FrmFormsListHelper extends FrmListHelper { |
7 | - var $status = ''; |
|
7 | + var $status = ''; |
|
8 | 8 | |
9 | 9 | public function __construct( $args ) { |
10 | 10 | $this->status = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | } |
14 | 14 | |
15 | 15 | public function prepare_items() { |
16 | - global $wpdb, $per_page, $mode; |
|
16 | + global $wpdb, $per_page, $mode; |
|
17 | 17 | |
18 | - $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode']; |
|
18 | + $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode']; |
|
19 | 19 | |
20 | 20 | $default_orderby = 'name'; |
21 | 21 | $default_order = 'ASC'; |
22 | 22 | |
23 | - $orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : $default_orderby; |
|
23 | + $orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : $default_orderby; |
|
24 | 24 | $order = ( isset( $_REQUEST['order'] ) ) ? $_REQUEST['order'] : $default_order; |
25 | 25 | |
26 | 26 | $page = $this->get_pagenum(); |
@@ -28,40 +28,40 @@ discard block |
||
28 | 28 | |
29 | 29 | $start = ( isset( $_REQUEST['start'] ) ) ? $_REQUEST['start'] : (( $page - 1 ) * $per_page); |
30 | 30 | |
31 | - $s_query = array(); |
|
32 | - $s_query[] = array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1 ); |
|
31 | + $s_query = array(); |
|
32 | + $s_query[] = array( 'or' => 1, 'parent_form_id' => null, 'parent_form_id <' => 1 ); |
|
33 | 33 | switch ( $this->status ) { |
34 | - case 'template': |
|
35 | - $s_query['is_template'] = 1; |
|
36 | - $s_query['status !'] = 'trash'; |
|
37 | - break; |
|
38 | - case 'draft': |
|
39 | - $s_query['is_template'] = 0; |
|
40 | - $s_query['status'] = 'draft'; |
|
41 | - break; |
|
42 | - case 'trash': |
|
43 | - $s_query['status'] = 'trash'; |
|
44 | - break; |
|
45 | - default: |
|
46 | - $s_query['is_template'] = 0; |
|
47 | - $s_query['status !'] = 'trash'; |
|
48 | - break; |
|
34 | + case 'template': |
|
35 | + $s_query['is_template'] = 1; |
|
36 | + $s_query['status !'] = 'trash'; |
|
37 | + break; |
|
38 | + case 'draft': |
|
39 | + $s_query['is_template'] = 0; |
|
40 | + $s_query['status'] = 'draft'; |
|
41 | + break; |
|
42 | + case 'trash': |
|
43 | + $s_query['status'] = 'trash'; |
|
44 | + break; |
|
45 | + default: |
|
46 | + $s_query['is_template'] = 0; |
|
47 | + $s_query['status !'] = 'trash'; |
|
48 | + break; |
|
49 | 49 | } |
50 | 50 | |
51 | - $s = isset( $_REQUEST['s'] ) ? stripslashes($_REQUEST['s']) : ''; |
|
52 | - if ( $s != '' ) { |
|
53 | - preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches); |
|
54 | - $search_terms = array_map('trim', $matches[0]); |
|
55 | - foreach ( (array) $search_terms as $term ) { |
|
56 | - $s_query[] = array( |
|
57 | - 'or' => true, 'name LIKE' => $term, 'description LIKE' => $term, 'created_at LIKE' => $term, |
|
58 | - ); |
|
59 | - unset($term); |
|
60 | - } |
|
61 | - } |
|
62 | - |
|
63 | - $this->items = FrmForm::getAll($s_query, $orderby .' '. $order, $start .','. $per_page); |
|
64 | - $total_items = FrmDb::get_count( 'frm_forms', $s_query ); |
|
51 | + $s = isset( $_REQUEST['s'] ) ? stripslashes($_REQUEST['s']) : ''; |
|
52 | + if ( $s != '' ) { |
|
53 | + preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches); |
|
54 | + $search_terms = array_map('trim', $matches[0]); |
|
55 | + foreach ( (array) $search_terms as $term ) { |
|
56 | + $s_query[] = array( |
|
57 | + 'or' => true, 'name LIKE' => $term, 'description LIKE' => $term, 'created_at LIKE' => $term, |
|
58 | + ); |
|
59 | + unset($term); |
|
60 | + } |
|
61 | + } |
|
62 | + |
|
63 | + $this->items = FrmForm::getAll($s_query, $orderby .' '. $order, $start .','. $per_page); |
|
64 | + $total_items = FrmDb::get_count( 'frm_forms', $s_query ); |
|
65 | 65 | |
66 | 66 | $this->set_pagination_args( array( |
67 | 67 | 'total_items' => $total_items, |
@@ -70,69 +70,69 @@ discard block |
||
70 | 70 | } |
71 | 71 | |
72 | 72 | public function no_items() { |
73 | - if ( 'template' == $this->status ) { |
|
74 | - _e( 'No Templates Found.', 'formidable' ) ?> |
|
73 | + if ( 'template' == $this->status ) { |
|
74 | + _e( 'No Templates Found.', 'formidable' ) ?> |
|
75 | 75 | <br/><br/><?php _e( 'To add a new template:', 'formidable' ) ?> |
76 | 76 | <ol><li><?php printf( __( 'Create a new %1$sform%2$s.', 'formidable' ), '<a href="'. esc_url( admin_url( 'admin?page=formidable&frm_action=new' ) ) . '"', '</a>' ) ?></li> |
77 | 77 | <li><?php printf(__( 'After your form is created, go to Formidable -> %1$sForms%2$s.', 'formidable' ), '<a href="?page=formidable">', '</a>') ?></li> |
78 | 78 | <li><?php _e( 'Place your mouse over the name of the form you just created, and click the "Create Template" link.', 'formidable' ) ?></li> |
79 | 79 | </ol> |
80 | 80 | <?php } else { |
81 | - _e( 'No Forms Found.', 'formidable' ) ?> |
|
81 | + _e( 'No Forms Found.', 'formidable' ) ?> |
|
82 | 82 | <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable&frm_action=new' ) ) ?>"><?php _e( 'Add New', 'formidable' ); ?></a> |
83 | 83 | <?php } |
84 | 84 | } |
85 | 85 | |
86 | 86 | public function get_bulk_actions() { |
87 | - $actions = array(); |
|
87 | + $actions = array(); |
|
88 | 88 | |
89 | 89 | if ( in_array( $this->status, array( '', 'published' ) ) ) { |
90 | - $actions['bulk_create_template'] = __( 'Create Template', 'formidable' ); |
|
91 | - } |
|
92 | - |
|
93 | - if ( 'trash' == $this->status ) { |
|
94 | - if ( current_user_can('frm_edit_forms') ) { |
|
95 | - $actions['bulk_untrash'] = __( 'Restore', 'formidable' ); |
|
96 | - } |
|
97 | - |
|
98 | - if ( current_user_can('frm_delete_forms') ) { |
|
99 | - $actions['bulk_delete'] = __( 'Delete Permanently', 'formidable' ); |
|
100 | - } |
|
101 | - } else if ( EMPTY_TRASH_DAYS && current_user_can('frm_delete_forms') ) { |
|
102 | - $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' ); |
|
103 | - } else if ( current_user_can('frm_delete_forms') ) { |
|
104 | - $actions['bulk_delete'] = __( 'Delete'); |
|
105 | - } |
|
106 | - |
|
107 | - return $actions; |
|
108 | - } |
|
90 | + $actions['bulk_create_template'] = __( 'Create Template', 'formidable' ); |
|
91 | + } |
|
92 | + |
|
93 | + if ( 'trash' == $this->status ) { |
|
94 | + if ( current_user_can('frm_edit_forms') ) { |
|
95 | + $actions['bulk_untrash'] = __( 'Restore', 'formidable' ); |
|
96 | + } |
|
97 | + |
|
98 | + if ( current_user_can('frm_delete_forms') ) { |
|
99 | + $actions['bulk_delete'] = __( 'Delete Permanently', 'formidable' ); |
|
100 | + } |
|
101 | + } else if ( EMPTY_TRASH_DAYS && current_user_can('frm_delete_forms') ) { |
|
102 | + $actions['bulk_trash'] = __( 'Move to Trash', 'formidable' ); |
|
103 | + } else if ( current_user_can('frm_delete_forms') ) { |
|
104 | + $actions['bulk_delete'] = __( 'Delete'); |
|
105 | + } |
|
106 | + |
|
107 | + return $actions; |
|
108 | + } |
|
109 | 109 | |
110 | 110 | public function extra_tablenav( $which ) { |
111 | - if ( 'top' != $which ) { |
|
112 | - return; |
|
113 | - } |
|
111 | + if ( 'top' != $which ) { |
|
112 | + return; |
|
113 | + } |
|
114 | 114 | |
115 | - if ( 'trash' == $this->status && current_user_can('frm_delete_forms') ) { |
|
115 | + if ( 'trash' == $this->status && current_user_can('frm_delete_forms') ) { |
|
116 | 116 | ?> |
117 | 117 | <div class="alignleft actions frm_visible_overflow"> |
118 | 118 | <?php submit_button( __( 'Empty Trash' ), 'apply', 'delete_all', false ); ?> |
119 | 119 | </div> |
120 | 120 | <?php |
121 | - return; |
|
122 | - } |
|
121 | + return; |
|
122 | + } |
|
123 | 123 | |
124 | - if ( 'template' != $this->status ) { |
|
125 | - return; |
|
126 | - } |
|
124 | + if ( 'template' != $this->status ) { |
|
125 | + return; |
|
126 | + } |
|
127 | 127 | |
128 | 128 | $where = apply_filters( 'frm_forms_dropdown', array(), '' ); |
129 | 129 | $forms = FrmForm::get_published_forms( $where ); |
130 | 130 | |
131 | - $base = admin_url('admin.php?page=formidable&form_type=template'); |
|
132 | - $args = array( |
|
133 | - 'frm_action' => 'duplicate', |
|
134 | - 'template' => true, |
|
135 | - ); |
|
131 | + $base = admin_url('admin.php?page=formidable&form_type=template'); |
|
132 | + $args = array( |
|
133 | + 'frm_action' => 'duplicate', |
|
134 | + 'template' => true, |
|
135 | + ); |
|
136 | 136 | |
137 | 137 | ?> |
138 | 138 | <div class="alignleft actions frm_visible_overflow"> |
@@ -140,18 +140,18 @@ discard block |
||
140 | 140 | <a href="#" id="frm-templateDrop" class="frm-dropdown-toggle button" data-toggle="dropdown"><?php _e( 'Create New Template', 'formidable' ) ?> <b class="caret"></b></a> |
141 | 141 | <ul class="frm-dropdown-menu" role="menu" aria-labelledby="frm-templateDrop"> |
142 | 142 | <?php |
143 | - if ( empty( $forms ) ) { ?> |
|
143 | + if ( empty( $forms ) ) { ?> |
|
144 | 144 | <li class="frm_dropdown_li"><?php _e( 'You have not created any forms yet. <br/>You must create a form before you can make a template.', 'formidable' ) ?></li> |
145 | 145 | <?php |
146 | - } else { |
|
147 | - foreach ( $forms as $form ) { |
|
148 | - $args['id'] = $form->id; ?> |
|
146 | + } else { |
|
147 | + foreach ( $forms as $form ) { |
|
148 | + $args['id'] = $form->id; ?> |
|
149 | 149 | <li><a href="<?php echo esc_url( add_query_arg( $args, $base ) ); ?>" tabindex="-1"><?php echo esc_html( empty( $form->name ) ? __( '(no title)' ) : FrmAppHelper::truncate( $form->name, 33 ) ); ?></a></li> |
150 | 150 | <?php |
151 | - unset($form); |
|
151 | + unset($form); |
|
152 | 152 | } |
153 | - } |
|
154 | - ?> |
|
153 | + } |
|
154 | + ?> |
|
155 | 155 | </ul> |
156 | 156 | </div> |
157 | 157 | </div> |
@@ -161,30 +161,30 @@ discard block |
||
161 | 161 | public function get_views() { |
162 | 162 | |
163 | 163 | $statuses = array( |
164 | - 'published' => __( 'My Forms', 'formidable' ), |
|
165 | - 'template' => __( 'Templates', 'formidable' ), |
|
166 | - 'draft' => __( 'Drafts', 'formidable' ), |
|
167 | - 'trash' => __( 'Trash', 'formidable' ), |
|
164 | + 'published' => __( 'My Forms', 'formidable' ), |
|
165 | + 'template' => __( 'Templates', 'formidable' ), |
|
166 | + 'draft' => __( 'Drafts', 'formidable' ), |
|
167 | + 'trash' => __( 'Trash', 'formidable' ), |
|
168 | 168 | ); |
169 | 169 | |
170 | - $links = array(); |
|
171 | - $counts = FrmForm::get_count(); |
|
172 | - $form_type = isset( $_REQUEST['form_type'] ) ? sanitize_text_field( $_REQUEST['form_type'] ) : 'published'; |
|
170 | + $links = array(); |
|
171 | + $counts = FrmForm::get_count(); |
|
172 | + $form_type = isset( $_REQUEST['form_type'] ) ? sanitize_text_field( $_REQUEST['form_type'] ) : 'published'; |
|
173 | 173 | |
174 | - foreach ( $statuses as $status => $name ) { |
|
174 | + foreach ( $statuses as $status => $name ) { |
|
175 | 175 | |
176 | - if ( $status == $form_type ) { |
|
177 | - $class = ' class="current"'; |
|
178 | - } else { |
|
179 | - $class = ''; |
|
180 | - } |
|
176 | + if ( $status == $form_type ) { |
|
177 | + $class = ' class="current"'; |
|
178 | + } else { |
|
179 | + $class = ''; |
|
180 | + } |
|
181 | 181 | |
182 | - if ( $counts->{$status} || 'published' == $status ) { |
|
182 | + if ( $counts->{$status} || 'published' == $status ) { |
|
183 | 183 | $links[ $status ] = '<a href="' . esc_url( '?page=formidable&form_type=' . $status ) . '" ' . $class . '>' . sprintf( __( '%1$s <span class="count">(%2$s)</span>', 'formidable' ), $name, number_format_i18n( $counts->{$status} ) ) . '</a>'; |
184 | - } |
|
184 | + } |
|
185 | 185 | |
186 | - unset($status, $name); |
|
187 | - } |
|
186 | + unset($status, $name); |
|
187 | + } |
|
188 | 188 | |
189 | 189 | return $links; |
190 | 190 | } |
@@ -200,16 +200,16 @@ discard block |
||
200 | 200 | } |
201 | 201 | |
202 | 202 | public function single_row( $item, $style = '' ) { |
203 | - global $frm_vars, $mode; |
|
203 | + global $frm_vars, $mode; |
|
204 | 204 | |
205 | 205 | // Set up the hover actions for this user |
206 | 206 | $actions = array(); |
207 | - $edit_link = '?page=formidable&frm_action=edit&id='. $item->id; |
|
208 | - $duplicate_link = '?page=formidable&frm_action=duplicate&id='. $item->id; |
|
207 | + $edit_link = '?page=formidable&frm_action=edit&id='. $item->id; |
|
208 | + $duplicate_link = '?page=formidable&frm_action=duplicate&id='. $item->id; |
|
209 | 209 | |
210 | - $this->get_actions($actions, $item, $edit_link, $duplicate_link); |
|
210 | + $this->get_actions($actions, $item, $edit_link, $duplicate_link); |
|
211 | 211 | |
212 | - $action_links = $this->row_actions( $actions ); |
|
212 | + $action_links = $this->row_actions( $actions ); |
|
213 | 213 | |
214 | 214 | // Set up the checkbox ( because the user is editable, otherwise its empty ) |
215 | 215 | $checkbox = '<input type="checkbox" name="item-action[]" id="cb-item-action-' . absint( $item->id ) . '" value="' . esc_attr( $item->id ) . '" />'; |
@@ -218,17 +218,17 @@ discard block |
||
218 | 218 | |
219 | 219 | list( $columns, $hidden ) = $this->get_column_info(); |
220 | 220 | |
221 | - $format = 'Y/m/d'; |
|
222 | - if ( 'list' != $mode ) { |
|
223 | - $format .= ' \<\b\r \/\> g:i:s a'; |
|
221 | + $format = 'Y/m/d'; |
|
222 | + if ( 'list' != $mode ) { |
|
223 | + $format .= ' \<\b\r \/\> g:i:s a'; |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | foreach ( $columns as $column_name => $column_display_name ) { |
227 | - $class = $column_name .' column-'. $column_name . ( ('name' == $column_name) ? ' post-title page-title column-title' : '' ); |
|
227 | + $class = $column_name .' column-'. $column_name . ( ('name' == $column_name) ? ' post-title page-title column-title' : '' ); |
|
228 | 228 | |
229 | 229 | $style = ''; |
230 | 230 | if ( in_array( $column_name, $hidden ) ) { |
231 | - $class .= ' frm_hidden'; |
|
231 | + $class .= ' frm_hidden'; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | $class = 'class="' . esc_attr( $class ) . '"'; |
@@ -241,41 +241,41 @@ discard block |
||
241 | 241 | break; |
242 | 242 | case 'id': |
243 | 243 | case 'form_key': |
244 | - $val = $item->{$column_name}; |
|
245 | - break; |
|
244 | + $val = $item->{$column_name}; |
|
245 | + break; |
|
246 | 246 | case 'name': |
247 | - $val = $this->get_form_name( $item, $actions, $edit_link, $mode ); |
|
248 | - $val .= $action_links; |
|
247 | + $val = $this->get_form_name( $item, $actions, $edit_link, $mode ); |
|
248 | + $val .= $action_links; |
|
249 | 249 | |
250 | - break; |
|
250 | + break; |
|
251 | 251 | case 'created_at': |
252 | - $date = date($format, strtotime($item->created_at)); |
|
252 | + $date = date($format, strtotime($item->created_at)); |
|
253 | 253 | $val = '<abbr title="' . esc_attr( date( 'Y/m/d g:i:s A', strtotime( $item->created_at ) ) ) . '">' . $date . '</abbr>'; |
254 | 254 | break; |
255 | 255 | case 'shortcode': |
256 | 256 | $val = '<input type="text" readonly="readonly" class="frm_select_box" value="' . esc_attr( '[formidable id=' . $item->id .']' ) . '" /><br/>'; |
257 | - if ( 'excerpt' == $mode ) { |
|
257 | + if ( 'excerpt' == $mode ) { |
|
258 | 258 | $val .= '<input type="text" readonly="readonly" class="frm_select_box" value="' . esc_attr( '[formidable key=' . $item->form_key . ']' ) . '" />'; |
259 | - } |
|
260 | - break; |
|
261 | - case 'entries': |
|
259 | + } |
|
260 | + break; |
|
261 | + case 'entries': |
|
262 | 262 | if ( isset( $item->options['no_save'] ) && $item->options['no_save'] ) { |
263 | - $val = '<i class="frm_icon_font frm_forbid_icon frm_bstooltip" title="'. esc_attr('Entries are not being saved', 'formidable' ) .'"></i>'; |
|
264 | - } else { |
|
265 | - $text = FrmEntry::getRecordCount($item->id); |
|
266 | - $val = (current_user_can('frm_view_entries')) ? '<a href="'. esc_url(admin_url('admin.php') .'?page=formidable-entries&form='. $item->id ) .'">'. $text .'</a>' : $text; |
|
267 | - unset($text); |
|
268 | - } |
|
269 | - break; |
|
270 | - case 'type': |
|
271 | - $val = ( $item->is_template && $item->default_template ) ? __( 'Default', 'formidable' ) : __( 'Custom', 'formidable' ); |
|
272 | - break; |
|
263 | + $val = '<i class="frm_icon_font frm_forbid_icon frm_bstooltip" title="'. esc_attr('Entries are not being saved', 'formidable' ) .'"></i>'; |
|
264 | + } else { |
|
265 | + $text = FrmEntry::getRecordCount($item->id); |
|
266 | + $val = (current_user_can('frm_view_entries')) ? '<a href="'. esc_url(admin_url('admin.php') .'?page=formidable-entries&form='. $item->id ) .'">'. $text .'</a>' : $text; |
|
267 | + unset($text); |
|
268 | + } |
|
269 | + break; |
|
270 | + case 'type': |
|
271 | + $val = ( $item->is_template && $item->default_template ) ? __( 'Default', 'formidable' ) : __( 'Custom', 'formidable' ); |
|
272 | + break; |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | if ( isset($val) ) { |
276 | - $r .= "<td $attributes>"; |
|
277 | - $r .= $val; |
|
278 | - $r .= '</td>'; |
|
276 | + $r .= "<td $attributes>"; |
|
277 | + $r .= $val; |
|
278 | + $r .= '</td>'; |
|
279 | 279 | } |
280 | 280 | unset($val); |
281 | 281 | } |
@@ -284,37 +284,37 @@ discard block |
||
284 | 284 | return $r; |
285 | 285 | } |
286 | 286 | |
287 | - /** |
|
288 | - * @param string $edit_link |
|
289 | - * @param string $duplicate_link |
|
290 | - */ |
|
291 | - private function get_actions( &$actions, $item, $edit_link, $duplicate_link ) { |
|
287 | + /** |
|
288 | + * @param string $edit_link |
|
289 | + * @param string $duplicate_link |
|
290 | + */ |
|
291 | + private function get_actions( &$actions, $item, $edit_link, $duplicate_link ) { |
|
292 | 292 | if ( 'trash' == $this->status ) { |
293 | 293 | if ( current_user_can('frm_edit_forms') ) { |
294 | 294 | $actions['restore'] = FrmFormsHelper::delete_trash_link( $item->id, $item->status, 'short' ); |
295 | 295 | } |
296 | 296 | |
297 | - if ( current_user_can('frm_delete_forms') ) { |
|
298 | - $actions['trash'] = '<a href="' . esc_url(wp_nonce_url( '?page=formidable&form_status=trash&frm_action=destroy&id='. $item->id, 'destroy_form_'. $item->id )) .'" class="submitdelete" onclick="return confirm(\''. __( 'Are you sure you want to permanently delete that?', 'formidable' ) .'\')">' . __( 'Delete Permanently' ) . '</a>'; |
|
299 | - } |
|
300 | - return; |
|
297 | + if ( current_user_can('frm_delete_forms') ) { |
|
298 | + $actions['trash'] = '<a href="' . esc_url(wp_nonce_url( '?page=formidable&form_status=trash&frm_action=destroy&id='. $item->id, 'destroy_form_'. $item->id )) .'" class="submitdelete" onclick="return confirm(\''. __( 'Are you sure you want to permanently delete that?', 'formidable' ) .'\')">' . __( 'Delete Permanently' ) . '</a>'; |
|
299 | + } |
|
300 | + return; |
|
301 | 301 | } |
302 | 302 | |
303 | 303 | if ( current_user_can('frm_edit_forms') ) { |
304 | - if ( ! $item->is_template || ! $item->default_template ) { |
|
305 | - $actions['frm_edit'] = '<a href="'. esc_url( $edit_link ) . '">'. __( 'Edit') .'</a>'; |
|
306 | - } |
|
304 | + if ( ! $item->is_template || ! $item->default_template ) { |
|
305 | + $actions['frm_edit'] = '<a href="'. esc_url( $edit_link ) . '">'. __( 'Edit') .'</a>'; |
|
306 | + } |
|
307 | 307 | |
308 | - if ( $item->is_template ) { |
|
308 | + if ( $item->is_template ) { |
|
309 | 309 | $actions['frm_duplicate'] = '<a href="'. esc_url( wp_nonce_url( $duplicate_link ) ) . '">' . __( 'Create Form from Template', 'formidable' ) . '</a>'; |
310 | - } else { |
|
311 | - $actions['frm_settings'] = '<a href="'. esc_url('?page=formidable&frm_action=settings&id='. $item->id ) . '">'. __( 'Settings', 'formidable' ) .'</a>'; |
|
310 | + } else { |
|
311 | + $actions['frm_settings'] = '<a href="'. esc_url('?page=formidable&frm_action=settings&id='. $item->id ) . '">'. __( 'Settings', 'formidable' ) .'</a>'; |
|
312 | 312 | |
313 | - if ( FrmAppHelper::pro_is_installed() ) { |
|
313 | + if ( FrmAppHelper::pro_is_installed() ) { |
|
314 | 314 | $actions['duplicate'] = '<a href="' . esc_url( wp_nonce_url( $duplicate_link ) ) . '">' . __( 'Duplicate', 'formidable' ) . '</a>'; |
315 | - } |
|
316 | - } |
|
317 | - } |
|
315 | + } |
|
316 | + } |
|
317 | + } |
|
318 | 318 | |
319 | 319 | $actions['trash'] = FrmFormsHelper::delete_trash_link( $item->id, $item->status, 'short' ); |
320 | 320 | if ( empty( $actions['trash'] ) ) { |
@@ -323,52 +323,52 @@ discard block |
||
323 | 323 | } |
324 | 324 | |
325 | 325 | $actions['view'] = '<a href="' . esc_url( FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" target="_blank">' . __( 'Preview') . '</a>'; |
326 | - } |
|
326 | + } |
|
327 | 327 | |
328 | - /** |
|
329 | - * @param string $edit_link |
|
330 | - */ |
|
328 | + /** |
|
329 | + * @param string $edit_link |
|
330 | + */ |
|
331 | 331 | private function get_form_name( $item, $actions, $edit_link, $mode = 'list' ) { |
332 | - $form_name = $item->name; |
|
333 | - if ( trim($form_name) == '' ) { |
|
334 | - $form_name = __( '(no title)'); |
|
335 | - } |
|
332 | + $form_name = $item->name; |
|
333 | + if ( trim($form_name) == '' ) { |
|
334 | + $form_name = __( '(no title)'); |
|
335 | + } |
|
336 | 336 | $form_name = FrmAppHelper::kses( $form_name ); |
337 | 337 | if ( 'excerpt' != $mode ) { |
338 | 338 | $form_name = FrmAppHelper::truncate( $form_name, 50 ); |
339 | 339 | } |
340 | 340 | |
341 | - $val = '<strong>'; |
|
342 | - if ( 'trash' == $this->status ) { |
|
343 | - $val .= $form_name; |
|
344 | - } else { |
|
341 | + $val = '<strong>'; |
|
342 | + if ( 'trash' == $this->status ) { |
|
343 | + $val .= $form_name; |
|
344 | + } else { |
|
345 | 345 | $val .= '<a href="' . esc_url( isset( $actions['frm_edit'] ) ? $edit_link : FrmFormsHelper::get_direct_link( $item->form_key, $item ) ) . '" class="row-title">' . FrmAppHelper::kses( $form_name ) . '</a> '; |
346 | - } |
|
347 | - |
|
348 | - $this->add_draft_label( $item, $val ); |
|
349 | - $val .= '</strong>'; |
|
350 | - |
|
351 | - $this->add_form_description( $item, $val ); |
|
352 | - |
|
353 | - return $val; |
|
354 | - } |
|
355 | - |
|
356 | - /** |
|
357 | - * @param string $val |
|
358 | - */ |
|
359 | - private function add_draft_label( $item, &$val ) { |
|
360 | - if ( 'draft' == $item->status && 'draft' != $this->status ) { |
|
361 | - $val .= ' - <span class="post-state">'. __( 'Draft', 'formidable' ) .'</span>'; |
|
362 | - } |
|
363 | - } |
|
364 | - |
|
365 | - /** |
|
366 | - * @param string $val |
|
367 | - */ |
|
368 | - private function add_form_description( $item, &$val ) { |
|
369 | - global $mode; |
|
370 | - if ( 'excerpt' == $mode ) { |
|
371 | - $val .= FrmAppHelper::truncate(strip_tags($item->description), 50); |
|
372 | - } |
|
373 | - } |
|
346 | + } |
|
347 | + |
|
348 | + $this->add_draft_label( $item, $val ); |
|
349 | + $val .= '</strong>'; |
|
350 | + |
|
351 | + $this->add_form_description( $item, $val ); |
|
352 | + |
|
353 | + return $val; |
|
354 | + } |
|
355 | + |
|
356 | + /** |
|
357 | + * @param string $val |
|
358 | + */ |
|
359 | + private function add_draft_label( $item, &$val ) { |
|
360 | + if ( 'draft' == $item->status && 'draft' != $this->status ) { |
|
361 | + $val .= ' - <span class="post-state">'. __( 'Draft', 'formidable' ) .'</span>'; |
|
362 | + } |
|
363 | + } |
|
364 | + |
|
365 | + /** |
|
366 | + * @param string $val |
|
367 | + */ |
|
368 | + private function add_form_description( $item, &$val ) { |
|
369 | + global $mode; |
|
370 | + if ( 'excerpt' == $mode ) { |
|
371 | + $val .= FrmAppHelper::truncate(strip_tags($item->description), 50); |
|
372 | + } |
|
373 | + } |
|
374 | 374 | } |
@@ -1,67 +1,67 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | class FrmStylesHelper { |
3 | 3 | |
4 | - public static function jquery_themes() { |
|
5 | - $themes = array( |
|
6 | - 'ui-lightness' => 'UI Lightness', |
|
7 | - 'ui-darkness' => 'UI Darkness', |
|
8 | - 'smoothness' => 'Smoothness', |
|
9 | - 'start' => 'Start', |
|
10 | - 'redmond' => 'Redmond', |
|
11 | - 'sunny' => 'Sunny', |
|
12 | - 'overcast' => 'Overcast', |
|
13 | - 'le-frog' => 'Le Frog', |
|
14 | - 'flick' => 'Flick', |
|
4 | + public static function jquery_themes() { |
|
5 | + $themes = array( |
|
6 | + 'ui-lightness' => 'UI Lightness', |
|
7 | + 'ui-darkness' => 'UI Darkness', |
|
8 | + 'smoothness' => 'Smoothness', |
|
9 | + 'start' => 'Start', |
|
10 | + 'redmond' => 'Redmond', |
|
11 | + 'sunny' => 'Sunny', |
|
12 | + 'overcast' => 'Overcast', |
|
13 | + 'le-frog' => 'Le Frog', |
|
14 | + 'flick' => 'Flick', |
|
15 | 15 | 'pepper-grinder' => 'Pepper Grinder', |
16 | - 'eggplant' => 'Eggplant', |
|
17 | - 'dark-hive' => 'Dark Hive', |
|
18 | - 'cupertino' => 'Cupertino', |
|
19 | - 'south-street' => 'South Street', |
|
20 | - 'blitzer' => 'Blitzer', |
|
21 | - 'humanity' => 'Humanity', |
|
22 | - 'hot-sneaks' => 'Hot Sneaks', |
|
23 | - 'excite-bike' => 'Excite Bike', |
|
24 | - 'vader' => 'Vader', |
|
25 | - 'dot-luv' => 'Dot Luv', |
|
26 | - 'mint-choc' => 'Mint Choc', |
|
27 | - 'black-tie' => 'Black Tie', |
|
28 | - 'trontastic' => 'Trontastic', |
|
29 | - 'swanky-purse' => 'Swanky Purse', |
|
30 | - ); |
|
31 | - |
|
32 | - $themes = apply_filters('frm_jquery_themes', $themes); |
|
33 | - return $themes; |
|
34 | - } |
|
16 | + 'eggplant' => 'Eggplant', |
|
17 | + 'dark-hive' => 'Dark Hive', |
|
18 | + 'cupertino' => 'Cupertino', |
|
19 | + 'south-street' => 'South Street', |
|
20 | + 'blitzer' => 'Blitzer', |
|
21 | + 'humanity' => 'Humanity', |
|
22 | + 'hot-sneaks' => 'Hot Sneaks', |
|
23 | + 'excite-bike' => 'Excite Bike', |
|
24 | + 'vader' => 'Vader', |
|
25 | + 'dot-luv' => 'Dot Luv', |
|
26 | + 'mint-choc' => 'Mint Choc', |
|
27 | + 'black-tie' => 'Black Tie', |
|
28 | + 'trontastic' => 'Trontastic', |
|
29 | + 'swanky-purse' => 'Swanky Purse', |
|
30 | + ); |
|
31 | + |
|
32 | + $themes = apply_filters('frm_jquery_themes', $themes); |
|
33 | + return $themes; |
|
34 | + } |
|
35 | 35 | |
36 | 36 | public static function jquery_css_url( $theme_css ) { |
37 | - if ( $theme_css == -1 ) { |
|
38 | - return; |
|
39 | - } |
|
40 | - |
|
41 | - if ( ! $theme_css || $theme_css == '' || $theme_css == 'ui-lightness' ) { |
|
42 | - $css_file = FrmAppHelper::plugin_url() . '/css/ui-lightness/jquery-ui.css'; |
|
43 | - } else if ( preg_match('/^http.?:\/\/.*\..*$/', $theme_css) ) { |
|
44 | - $css_file = $theme_css; |
|
45 | - } else { |
|
46 | - $uploads = self::get_upload_base(); |
|
47 | - $file_path = '/formidable/css/'. $theme_css . '/jquery-ui.css'; |
|
48 | - if ( file_exists($uploads['basedir'] . $file_path) ) { |
|
49 | - $css_file = $uploads['baseurl'] . $file_path; |
|
50 | - } else { |
|
51 | - $css_file = FrmAppHelper::jquery_ui_base_url() .'/themes/'. $theme_css . '/jquery-ui.min.css'; |
|
52 | - } |
|
53 | - } |
|
54 | - |
|
55 | - return $css_file; |
|
56 | - } |
|
57 | - |
|
58 | - public static function enqueue_jquery_css() { |
|
37 | + if ( $theme_css == -1 ) { |
|
38 | + return; |
|
39 | + } |
|
40 | + |
|
41 | + if ( ! $theme_css || $theme_css == '' || $theme_css == 'ui-lightness' ) { |
|
42 | + $css_file = FrmAppHelper::plugin_url() . '/css/ui-lightness/jquery-ui.css'; |
|
43 | + } else if ( preg_match('/^http.?:\/\/.*\..*$/', $theme_css) ) { |
|
44 | + $css_file = $theme_css; |
|
45 | + } else { |
|
46 | + $uploads = self::get_upload_base(); |
|
47 | + $file_path = '/formidable/css/'. $theme_css . '/jquery-ui.css'; |
|
48 | + if ( file_exists($uploads['basedir'] . $file_path) ) { |
|
49 | + $css_file = $uploads['baseurl'] . $file_path; |
|
50 | + } else { |
|
51 | + $css_file = FrmAppHelper::jquery_ui_base_url() .'/themes/'. $theme_css . '/jquery-ui.min.css'; |
|
52 | + } |
|
53 | + } |
|
54 | + |
|
55 | + return $css_file; |
|
56 | + } |
|
57 | + |
|
58 | + public static function enqueue_jquery_css() { |
|
59 | 59 | $form = self::get_form_for_page(); |
60 | 60 | $theme_css = FrmStylesController::get_style_val( 'theme_css', $form ); |
61 | - if ( $theme_css != -1 ) { |
|
62 | - wp_enqueue_style('jquery-theme', self::jquery_css_url($theme_css), array(), FrmAppHelper::plugin_version()); |
|
63 | - } |
|
64 | - } |
|
61 | + if ( $theme_css != -1 ) { |
|
62 | + wp_enqueue_style('jquery-theme', self::jquery_css_url($theme_css), array(), FrmAppHelper::plugin_version()); |
|
63 | + } |
|
64 | + } |
|
65 | 65 | |
66 | 66 | public static function get_form_for_page() { |
67 | 67 | global $frm_vars; |
@@ -77,14 +77,14 @@ discard block |
||
77 | 77 | return $form_id; |
78 | 78 | } |
79 | 79 | |
80 | - public static function get_upload_base() { |
|
81 | - $uploads = wp_upload_dir(); |
|
82 | - if ( is_ssl() && ! preg_match('/^https:\/\/.*\..*$/', $uploads['baseurl']) ) { |
|
83 | - $uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']); |
|
84 | - } |
|
80 | + public static function get_upload_base() { |
|
81 | + $uploads = wp_upload_dir(); |
|
82 | + if ( is_ssl() && ! preg_match('/^https:\/\/.*\..*$/', $uploads['baseurl']) ) { |
|
83 | + $uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']); |
|
84 | + } |
|
85 | 85 | |
86 | - return $uploads; |
|
87 | - } |
|
86 | + return $uploads; |
|
87 | + } |
|
88 | 88 | |
89 | 89 | public static function style_menu( $active = '' ) { |
90 | 90 | ?> |
@@ -94,22 +94,22 @@ discard block |
||
94 | 94 | <a href="<?php echo esc_url( admin_url('admin.php?page=formidable-styles&frm_action=custom_css' ) ) ?>" class="nav-tab <?php echo ( 'custom_css' == $active ) ? 'nav-tab-active' : '' ?>"><?php _e( 'Custom CSS', 'formidable' ) ?></a> |
95 | 95 | </h2> |
96 | 96 | <?php |
97 | - } |
|
97 | + } |
|
98 | 98 | |
99 | - public static function minus_icons() { |
|
100 | - return array( |
|
99 | + public static function minus_icons() { |
|
100 | + return array( |
|
101 | 101 | 0 => array( '-' => '62e', '+' => '62f' ), |
102 | 102 | 1 => array( '-' => '600', '+' => '602' ), |
103 | 103 | 2 => array( '-' => '604', '+' => '603' ), |
104 | 104 | 3 => array( '-' => '633', '+' => '632' ), |
105 | 105 | 4 => array( '-' => '613', '+' => '60f' ), |
106 | - ); |
|
107 | - } |
|
106 | + ); |
|
107 | + } |
|
108 | 108 | |
109 | - public static function arrow_icons() { |
|
110 | - $minus_icons = self::minus_icons(); |
|
109 | + public static function arrow_icons() { |
|
110 | + $minus_icons = self::minus_icons(); |
|
111 | 111 | |
112 | - return array( |
|
112 | + return array( |
|
113 | 113 | 6 => array( '-' => '62d', '+' => '62a' ), |
114 | 114 | 0 => array( '-' => '60d', '+' => '609' ), |
115 | 115 | 1 => array( '-' => '60e', '+' => '60c' ), |
@@ -117,44 +117,44 @@ discard block |
||
117 | 117 | 3 => array( '-' => '62b', '+' => '628' ), |
118 | 118 | 4 => array( '-' => '62c', '+' => '629' ), |
119 | 119 | 5 => array( '-' => '635', '+' => '634' ), |
120 | - 'p0' => $minus_icons[0], |
|
121 | - 'p1' => $minus_icons[1], |
|
122 | - 'p2' => $minus_icons[2], |
|
123 | - 'p3' => $minus_icons[3], |
|
124 | - 'p4' => $minus_icons[4], |
|
125 | - ); |
|
126 | - } |
|
127 | - |
|
128 | - /** |
|
129 | - * @since 2.0 |
|
130 | - * @return The class for this icon |
|
131 | - */ |
|
120 | + 'p0' => $minus_icons[0], |
|
121 | + 'p1' => $minus_icons[1], |
|
122 | + 'p2' => $minus_icons[2], |
|
123 | + 'p3' => $minus_icons[3], |
|
124 | + 'p4' => $minus_icons[4], |
|
125 | + ); |
|
126 | + } |
|
127 | + |
|
128 | + /** |
|
129 | + * @since 2.0 |
|
130 | + * @return The class for this icon |
|
131 | + */ |
|
132 | 132 | public static function icon_key_to_class( $key, $icon = '+', $type = 'arrow' ) { |
133 | - if ( 'arrow' == $type && is_numeric($key) ) { |
|
134 | - //frm_arrowup6_icon |
|
133 | + if ( 'arrow' == $type && is_numeric($key) ) { |
|
134 | + //frm_arrowup6_icon |
|
135 | 135 | $arrow = array( '-' => 'down', '+' => 'up' ); |
136 | 136 | $class = 'frm_arrow' . $arrow[ $icon ]; |
137 | - } else { |
|
138 | - //frm_minus1_icon |
|
139 | - $key = str_replace('p', '', $key); |
|
137 | + } else { |
|
138 | + //frm_minus1_icon |
|
139 | + $key = str_replace('p', '', $key); |
|
140 | 140 | $plus = array( '-' => 'minus', '+' => 'plus' ); |
141 | 141 | $class = 'frm_' . $plus[ $icon ]; |
142 | - } |
|
142 | + } |
|
143 | 143 | |
144 | - if ( $key ) { |
|
145 | - $class .= $key; |
|
146 | - } |
|
147 | - $class .= '_icon'; |
|
144 | + if ( $key ) { |
|
145 | + $class .= $key; |
|
146 | + } |
|
147 | + $class .= '_icon'; |
|
148 | 148 | |
149 | - return $class; |
|
150 | - } |
|
149 | + return $class; |
|
150 | + } |
|
151 | 151 | |
152 | 152 | public static function bs_icon_select( $style, $frm_style, $type = 'arrow' ) { |
153 | 153 | $function_name = $type . '_icons'; |
154 | 154 | $icons = self::$function_name(); |
155 | 155 | unset( $function_name ); |
156 | 156 | |
157 | - $name = ( 'arrow' == $type ) ? 'collapse_icon' : 'repeat_icon'; |
|
157 | + $name = ( 'arrow' == $type ) ? 'collapse_icon' : 'repeat_icon'; |
|
158 | 158 | ?> |
159 | 159 | <select name="<?php echo esc_attr( $frm_style->get_field_name($name) ) ?>" id="frm_<?php echo esc_attr( $name ) ?>" class="frm_icon_font frm_multiselect hide-if-js"> |
160 | 160 | <?php foreach ( $icons as $key => $icon ) { ?> |
@@ -187,22 +187,22 @@ discard block |
||
187 | 187 | </ul> |
188 | 188 | </div> |
189 | 189 | <?php |
190 | - } |
|
190 | + } |
|
191 | 191 | |
192 | 192 | public static function hex2rgb( $hex ) { |
193 | - $hex = str_replace('#', '', $hex); |
|
194 | - |
|
195 | - if ( strlen($hex) == 3 ) { |
|
196 | - $r = hexdec( substr($hex,0,1).substr($hex,0,1) ); |
|
197 | - $g = hexdec( substr($hex,1,1).substr($hex,1,1) ); |
|
198 | - $b = hexdec( substr($hex,2,1).substr($hex,2,1) ); |
|
199 | - } else { |
|
200 | - $r = hexdec( substr($hex,0,2) ); |
|
201 | - $g = hexdec( substr($hex,2,2) ); |
|
202 | - $b = hexdec( substr($hex,4,2) ); |
|
203 | - } |
|
193 | + $hex = str_replace('#', '', $hex); |
|
194 | + |
|
195 | + if ( strlen($hex) == 3 ) { |
|
196 | + $r = hexdec( substr($hex,0,1).substr($hex,0,1) ); |
|
197 | + $g = hexdec( substr($hex,1,1).substr($hex,1,1) ); |
|
198 | + $b = hexdec( substr($hex,2,1).substr($hex,2,1) ); |
|
199 | + } else { |
|
200 | + $r = hexdec( substr($hex,0,2) ); |
|
201 | + $g = hexdec( substr($hex,2,2) ); |
|
202 | + $b = hexdec( substr($hex,4,2) ); |
|
203 | + } |
|
204 | 204 | $rgb = array( $r, $g, $b ); |
205 | - return implode(',', $rgb); // returns the rgb values separated by commas |
|
206 | - //return $rgb; // returns an array with the rgb values |
|
207 | - } |
|
205 | + return implode(',', $rgb); // returns the rgb values separated by commas |
|
206 | + //return $rgb; // returns an array with the rgb values |
|
207 | + } |
|
208 | 208 | } |
@@ -1,81 +1,81 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | class FrmDb { |
4 | - var $fields; |
|
5 | - var $forms; |
|
6 | - var $entries; |
|
7 | - var $entry_metas; |
|
8 | - |
|
9 | - public function __construct() { |
|
10 | - if ( ! defined('ABSPATH') ) { |
|
11 | - die('You are not allowed to call this page directly.'); |
|
12 | - } |
|
13 | - |
|
14 | - global $wpdb; |
|
15 | - $this->fields = $wpdb->prefix . 'frm_fields'; |
|
16 | - $this->forms = $wpdb->prefix . 'frm_forms'; |
|
17 | - $this->entries = $wpdb->prefix . 'frm_items'; |
|
18 | - $this->entry_metas = $wpdb->prefix . 'frm_item_metas'; |
|
19 | - } |
|
20 | - |
|
21 | - public function upgrade( $old_db_version = false ) { |
|
22 | - global $wpdb; |
|
23 | - //$frm_db_version is the version of the database we're moving to |
|
24 | - $frm_db_version = FrmAppHelper::$db_version; |
|
25 | - $old_db_version = (float) $old_db_version; |
|
26 | - if ( ! $old_db_version ) { |
|
27 | - $old_db_version = get_option('frm_db_version'); |
|
28 | - } |
|
29 | - |
|
30 | - if ( $frm_db_version != $old_db_version ) { |
|
4 | + var $fields; |
|
5 | + var $forms; |
|
6 | + var $entries; |
|
7 | + var $entry_metas; |
|
8 | + |
|
9 | + public function __construct() { |
|
10 | + if ( ! defined('ABSPATH') ) { |
|
11 | + die('You are not allowed to call this page directly.'); |
|
12 | + } |
|
13 | + |
|
14 | + global $wpdb; |
|
15 | + $this->fields = $wpdb->prefix . 'frm_fields'; |
|
16 | + $this->forms = $wpdb->prefix . 'frm_forms'; |
|
17 | + $this->entries = $wpdb->prefix . 'frm_items'; |
|
18 | + $this->entry_metas = $wpdb->prefix . 'frm_item_metas'; |
|
19 | + } |
|
20 | + |
|
21 | + public function upgrade( $old_db_version = false ) { |
|
22 | + global $wpdb; |
|
23 | + //$frm_db_version is the version of the database we're moving to |
|
24 | + $frm_db_version = FrmAppHelper::$db_version; |
|
25 | + $old_db_version = (float) $old_db_version; |
|
26 | + if ( ! $old_db_version ) { |
|
27 | + $old_db_version = get_option('frm_db_version'); |
|
28 | + } |
|
29 | + |
|
30 | + if ( $frm_db_version != $old_db_version ) { |
|
31 | 31 | // update rewrite rules for views and other custom post types |
32 | 32 | flush_rewrite_rules(); |
33 | 33 | |
34 | 34 | require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); |
35 | 35 | |
36 | - $this->create_tables(); |
|
37 | - $this->migrate_data($frm_db_version, $old_db_version); |
|
36 | + $this->create_tables(); |
|
37 | + $this->migrate_data($frm_db_version, $old_db_version); |
|
38 | 38 | |
39 | - /***** SAVE DB VERSION *****/ |
|
40 | - update_option('frm_db_version', $frm_db_version); |
|
39 | + /***** SAVE DB VERSION *****/ |
|
40 | + update_option('frm_db_version', $frm_db_version); |
|
41 | 41 | |
42 | - /**** ADD/UPDATE DEFAULT TEMPLATES ****/ |
|
43 | - FrmXMLController::add_default_templates(); |
|
44 | - } |
|
42 | + /**** ADD/UPDATE DEFAULT TEMPLATES ****/ |
|
43 | + FrmXMLController::add_default_templates(); |
|
44 | + } |
|
45 | 45 | |
46 | - do_action('frm_after_install'); |
|
46 | + do_action('frm_after_install'); |
|
47 | 47 | |
48 | - /**** update the styling settings ****/ |
|
48 | + /**** update the styling settings ****/ |
|
49 | 49 | if ( is_admin() && function_exists( 'get_filesystem_method' ) ) { |
50 | 50 | $frm_style = new FrmStyle(); |
51 | 51 | $frm_style->update( 'default' ); |
52 | 52 | } |
53 | - } |
|
53 | + } |
|
54 | 54 | |
55 | - public function collation() { |
|
56 | - global $wpdb; |
|
57 | - if ( ! $wpdb->has_cap( 'collation' ) ) { |
|
58 | - return ''; |
|
59 | - } |
|
55 | + public function collation() { |
|
56 | + global $wpdb; |
|
57 | + if ( ! $wpdb->has_cap( 'collation' ) ) { |
|
58 | + return ''; |
|
59 | + } |
|
60 | 60 | |
61 | - $charset_collate = ''; |
|
61 | + $charset_collate = ''; |
|
62 | 62 | if ( ! empty( $wpdb->charset ) ) { |
63 | 63 | $charset_collate .= ' DEFAULT CHARACTER SET '. $wpdb->charset; |
64 | 64 | } |
65 | 65 | |
66 | - if ( ! empty($wpdb->collate) ) { |
|
67 | - $charset_collate .= ' COLLATE '. $wpdb->collate; |
|
68 | - } |
|
66 | + if ( ! empty($wpdb->collate) ) { |
|
67 | + $charset_collate .= ' COLLATE '. $wpdb->collate; |
|
68 | + } |
|
69 | 69 | |
70 | - return $charset_collate; |
|
71 | - } |
|
70 | + return $charset_collate; |
|
71 | + } |
|
72 | 72 | |
73 | - private function create_tables() { |
|
74 | - $charset_collate = $this->collation(); |
|
75 | - $sql = array(); |
|
73 | + private function create_tables() { |
|
74 | + $charset_collate = $this->collation(); |
|
75 | + $sql = array(); |
|
76 | 76 | |
77 | - /* Create/Upgrade Fields Table */ |
|
78 | - $sql[] = 'CREATE TABLE '. $this->fields .' ( |
|
77 | + /* Create/Upgrade Fields Table */ |
|
78 | + $sql[] = 'CREATE TABLE '. $this->fields .' ( |
|
79 | 79 | id int(11) NOT NULL auto_increment, |
80 | 80 | field_key varchar(100) default NULL, |
81 | 81 | name text default NULL, |
@@ -93,8 +93,8 @@ discard block |
||
93 | 93 | UNIQUE KEY field_key (field_key) |
94 | 94 | )'; |
95 | 95 | |
96 | - /* Create/Upgrade Forms Table */ |
|
97 | - $sql[] = 'CREATE TABLE '. $this->forms .' ( |
|
96 | + /* Create/Upgrade Forms Table */ |
|
97 | + $sql[] = 'CREATE TABLE '. $this->forms .' ( |
|
98 | 98 | id int(11) NOT NULL auto_increment, |
99 | 99 | form_key varchar(100) default NULL, |
100 | 100 | name varchar(255) default NULL, |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | UNIQUE KEY form_key (form_key) |
112 | 112 | )'; |
113 | 113 | |
114 | - /* Create/Upgrade Items Table */ |
|
115 | - $sql[] = 'CREATE TABLE '. $this->entries .' ( |
|
114 | + /* Create/Upgrade Items Table */ |
|
115 | + $sql[] = 'CREATE TABLE '. $this->entries .' ( |
|
116 | 116 | id int(11) NOT NULL auto_increment, |
117 | 117 | item_key varchar(100) default NULL, |
118 | 118 | name varchar(255) default NULL, |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | UNIQUE KEY item_key (item_key) |
135 | 135 | )'; |
136 | 136 | |
137 | - /* Create/Upgrade Meta Table */ |
|
138 | - $sql[] = 'CREATE TABLE '. $this->entry_metas .' ( |
|
137 | + /* Create/Upgrade Meta Table */ |
|
138 | + $sql[] = 'CREATE TABLE '. $this->entry_metas .' ( |
|
139 | 139 | id int(11) NOT NULL auto_increment, |
140 | 140 | meta_value longtext default NULL, |
141 | 141 | field_id int(11) NOT NULL, |
@@ -146,39 +146,39 @@ discard block |
||
146 | 146 | KEY item_id (item_id) |
147 | 147 | )'; |
148 | 148 | |
149 | - foreach ( $sql as $q ) { |
|
149 | + foreach ( $sql as $q ) { |
|
150 | 150 | if ( function_exists( 'dbDelta' ) ) { |
151 | 151 | dbDelta( $q . $charset_collate .';' ); |
152 | 152 | } else { |
153 | 153 | global $wpdb; |
154 | 154 | $wpdb->query( $q . $charset_collate ); |
155 | 155 | } |
156 | - unset($q); |
|
157 | - } |
|
158 | - } |
|
156 | + unset($q); |
|
157 | + } |
|
158 | + } |
|
159 | 159 | |
160 | - /** |
|
161 | - * @param integer $frm_db_version |
|
162 | - */ |
|
160 | + /** |
|
161 | + * @param integer $frm_db_version |
|
162 | + */ |
|
163 | 163 | private function migrate_data( $frm_db_version, $old_db_version ) { |
164 | 164 | $migrations = array( 4, 6, 11, 16, 17, 23, 25 ); |
165 | - foreach ( $migrations as $migration ) { |
|
166 | - if ( $frm_db_version >= $migration && $old_db_version < $migration ) { |
|
167 | - $function_name = 'migrate_to_'. $migration; |
|
168 | - $this->$function_name(); |
|
169 | - } |
|
170 | - } |
|
171 | - } |
|
172 | - |
|
173 | - /** |
|
174 | - * Change array into format $wpdb->prepare can use |
|
175 | - */ |
|
176 | - public static function get_where_clause_and_values( &$args, $starts_with = ' WHERE ' ) { |
|
177 | - if ( empty($args) ) { |
|
165 | + foreach ( $migrations as $migration ) { |
|
166 | + if ( $frm_db_version >= $migration && $old_db_version < $migration ) { |
|
167 | + $function_name = 'migrate_to_'. $migration; |
|
168 | + $this->$function_name(); |
|
169 | + } |
|
170 | + } |
|
171 | + } |
|
172 | + |
|
173 | + /** |
|
174 | + * Change array into format $wpdb->prepare can use |
|
175 | + */ |
|
176 | + public static function get_where_clause_and_values( &$args, $starts_with = ' WHERE ' ) { |
|
177 | + if ( empty($args) ) { |
|
178 | 178 | // add an arg to prevent prepare from failing |
179 | 179 | $args = array( 'where' => $starts_with . '1=%d', 'values' => array( 1 ) ); |
180 | 180 | return; |
181 | - } |
|
181 | + } |
|
182 | 182 | |
183 | 183 | $where = ''; |
184 | 184 | $values = array(); |
@@ -189,60 +189,60 @@ discard block |
||
189 | 189 | } |
190 | 190 | |
191 | 191 | $args = compact( 'where', 'values' ); |
192 | - } |
|
193 | - |
|
194 | - /** |
|
195 | - * @param string $base_where |
|
196 | - * @param string $where |
|
197 | - */ |
|
198 | - public static function parse_where_from_array( $args, $base_where, &$where, &$values ) { |
|
199 | - $condition = ' AND'; |
|
200 | - if ( isset( $args['or'] ) ) { |
|
201 | - $condition = ' OR'; |
|
202 | - unset( $args['or'] ); |
|
203 | - } |
|
204 | - |
|
205 | - foreach ( $args as $key => $value ) { |
|
206 | - $where .= empty( $where ) ? $base_where : $condition; |
|
207 | - $array_inc_null = ( ! is_numeric( $key ) && is_array( $value ) && in_array( null, $value ) ); |
|
208 | - if ( is_numeric( $key ) || $array_inc_null ) { |
|
209 | - $where .= ' ( '; |
|
210 | - $nested_where = ''; |
|
211 | - if ( $array_inc_null ) { |
|
212 | - foreach ( $value as $val ) { |
|
213 | - self::parse_where_from_array( array( $key => $val, 'or' => 1 ), '', $nested_where, $values ); |
|
214 | - } |
|
215 | - } else { |
|
216 | - self::parse_where_from_array( $value, '', $nested_where, $values ); |
|
217 | - } |
|
218 | - $where .= $nested_where; |
|
219 | - $where .= ' ) '; |
|
220 | - } else { |
|
221 | - self::interpret_array_to_sql( $key, $value, $where, $values ); |
|
222 | - } |
|
223 | - } |
|
224 | - } |
|
225 | - |
|
226 | - /** |
|
227 | - * @param string $key |
|
228 | - * @param string $where |
|
229 | - */ |
|
230 | - private static function interpret_array_to_sql( $key, $value, &$where, &$values ) { |
|
192 | + } |
|
193 | + |
|
194 | + /** |
|
195 | + * @param string $base_where |
|
196 | + * @param string $where |
|
197 | + */ |
|
198 | + public static function parse_where_from_array( $args, $base_where, &$where, &$values ) { |
|
199 | + $condition = ' AND'; |
|
200 | + if ( isset( $args['or'] ) ) { |
|
201 | + $condition = ' OR'; |
|
202 | + unset( $args['or'] ); |
|
203 | + } |
|
204 | + |
|
205 | + foreach ( $args as $key => $value ) { |
|
206 | + $where .= empty( $where ) ? $base_where : $condition; |
|
207 | + $array_inc_null = ( ! is_numeric( $key ) && is_array( $value ) && in_array( null, $value ) ); |
|
208 | + if ( is_numeric( $key ) || $array_inc_null ) { |
|
209 | + $where .= ' ( '; |
|
210 | + $nested_where = ''; |
|
211 | + if ( $array_inc_null ) { |
|
212 | + foreach ( $value as $val ) { |
|
213 | + self::parse_where_from_array( array( $key => $val, 'or' => 1 ), '', $nested_where, $values ); |
|
214 | + } |
|
215 | + } else { |
|
216 | + self::parse_where_from_array( $value, '', $nested_where, $values ); |
|
217 | + } |
|
218 | + $where .= $nested_where; |
|
219 | + $where .= ' ) '; |
|
220 | + } else { |
|
221 | + self::interpret_array_to_sql( $key, $value, $where, $values ); |
|
222 | + } |
|
223 | + } |
|
224 | + } |
|
225 | + |
|
226 | + /** |
|
227 | + * @param string $key |
|
228 | + * @param string $where |
|
229 | + */ |
|
230 | + private static function interpret_array_to_sql( $key, $value, &$where, &$values ) { |
|
231 | 231 | $key = trim( $key ); |
232 | 232 | |
233 | - if ( strpos( $key, 'created_at' ) !== false || strpos( $key, 'updated_at' ) !== false ) { |
|
234 | - $k = explode(' ', $key); |
|
235 | - $where .= ' DATE_FORMAT(' . reset( $k ) . ', %s) ' . str_replace( reset( $k ), '', $key ); |
|
236 | - $values[] = '%Y-%m-%d %H:%i:%s'; |
|
237 | - } else { |
|
238 | - $where .= ' '. $key; |
|
239 | - } |
|
233 | + if ( strpos( $key, 'created_at' ) !== false || strpos( $key, 'updated_at' ) !== false ) { |
|
234 | + $k = explode(' ', $key); |
|
235 | + $where .= ' DATE_FORMAT(' . reset( $k ) . ', %s) ' . str_replace( reset( $k ), '', $key ); |
|
236 | + $values[] = '%Y-%m-%d %H:%i:%s'; |
|
237 | + } else { |
|
238 | + $where .= ' '. $key; |
|
239 | + } |
|
240 | 240 | |
241 | 241 | $lowercase_key = explode( ' ', strtolower( $key ) ); |
242 | 242 | $lowercase_key = end( $lowercase_key ); |
243 | 243 | |
244 | - if ( is_array( $value ) ) { |
|
245 | - // translate array of values to "in" |
|
244 | + if ( is_array( $value ) ) { |
|
245 | + // translate array of values to "in" |
|
246 | 246 | if ( strpos( $lowercase_key, 'like' ) !== false ) { |
247 | 247 | $where = rtrim( $where, $key ); |
248 | 248 | $where .= '('; |
@@ -257,10 +257,10 @@ discard block |
||
257 | 257 | } |
258 | 258 | $where .= ')'; |
259 | 259 | } else if ( ! empty( $value ) ) { |
260 | - $where .= ' in ('. FrmAppHelper::prepare_array_values( $value, '%s' ) .')'; |
|
260 | + $where .= ' in ('. FrmAppHelper::prepare_array_values( $value, '%s' ) .')'; |
|
261 | 261 | $values = array_merge( $values, $value ); |
262 | 262 | } |
263 | - } else if ( strpos( $lowercase_key, 'like' ) !== false ) { |
|
263 | + } else if ( strpos( $lowercase_key, 'like' ) !== false ) { |
|
264 | 264 | /** |
265 | 265 | * Allow string to start or end with the value |
266 | 266 | * If the key is like% then skip the first % for starts with |
@@ -279,9 +279,9 @@ discard block |
||
279 | 279 | $where .= ' %s'; |
280 | 280 | $values[] = $start . FrmAppHelper::esc_like( $value ) . $end; |
281 | 281 | |
282 | - } else if ( $value === null ) { |
|
283 | - $where .= ' IS NULL'; |
|
284 | - } else { |
|
282 | + } else if ( $value === null ) { |
|
283 | + $where .= ' IS NULL'; |
|
284 | + } else { |
|
285 | 285 | // allow a - to prevent = from being added |
286 | 286 | if ( substr( $key, -1 ) == '-' ) { |
287 | 287 | $where = rtrim( $where, '-' ); |
@@ -289,28 +289,28 @@ discard block |
||
289 | 289 | $where .= '='; |
290 | 290 | } |
291 | 291 | |
292 | - $where .= is_numeric( $value ) ? ( strpos( $value, '.' ) !== false ? '%f' : '%d' ) : '%s'; |
|
293 | - $values[] = $value; |
|
294 | - } |
|
295 | - } |
|
296 | - |
|
297 | - /** |
|
298 | - * @param string $table |
|
299 | - */ |
|
300 | - public static function get_count( $table, $where = array(), $args = array() ) { |
|
301 | - $count = self::get_var( $table, $where, 'COUNT(*)', $args ); |
|
302 | - return $count; |
|
303 | - } |
|
304 | - |
|
305 | - public static function get_var( $table, $where = array(), $field = 'id', $args = array(), $limit = '', $type = 'var' ) { |
|
306 | - $group = ''; |
|
307 | - self::get_group_and_table_name( $table, $group ); |
|
292 | + $where .= is_numeric( $value ) ? ( strpos( $value, '.' ) !== false ? '%f' : '%d' ) : '%s'; |
|
293 | + $values[] = $value; |
|
294 | + } |
|
295 | + } |
|
296 | + |
|
297 | + /** |
|
298 | + * @param string $table |
|
299 | + */ |
|
300 | + public static function get_count( $table, $where = array(), $args = array() ) { |
|
301 | + $count = self::get_var( $table, $where, 'COUNT(*)', $args ); |
|
302 | + return $count; |
|
303 | + } |
|
304 | + |
|
305 | + public static function get_var( $table, $where = array(), $field = 'id', $args = array(), $limit = '', $type = 'var' ) { |
|
306 | + $group = ''; |
|
307 | + self::get_group_and_table_name( $table, $group ); |
|
308 | 308 | self::convert_options_to_array( $args, '', $limit ); |
309 | 309 | |
310 | 310 | $query = 'SELECT ' . $field . ' FROM ' . $table; |
311 | 311 | if ( is_array( $where ) || empty( $where ) ) { |
312 | 312 | // only separate into array values and query string if is array |
313 | - self::get_where_clause_and_values( $where ); |
|
313 | + self::get_where_clause_and_values( $where ); |
|
314 | 314 | global $wpdb; |
315 | 315 | $query = $wpdb->prepare( $query . $where['where'] . ' ' . implode( ' ', $args ), $where['values'] ); |
316 | 316 | } else { |
@@ -322,49 +322,49 @@ discard block |
||
322 | 322 | $query .= $where . ' ' . implode( ' ', $args ); |
323 | 323 | } |
324 | 324 | |
325 | - $cache_key = str_replace( array( ' ', ',' ), '_', trim( implode('_', FrmAppHelper::array_flatten( $where ) ) . implode( '_', $args ) . $field .'_'. $type, ' WHERE' ) ); |
|
326 | - $results = FrmAppHelper::check_cache( $cache_key, $group, $query, 'get_'. $type ); |
|
327 | - return $results; |
|
328 | - } |
|
329 | - |
|
330 | - /** |
|
331 | - * @param string $table |
|
332 | - * @param array $where |
|
333 | - */ |
|
334 | - public static function get_col( $table, $where = array(), $field = 'id', $args = array(), $limit = '' ) { |
|
335 | - return self::get_var( $table, $where, $field, $args, $limit, 'col' ); |
|
336 | - } |
|
337 | - |
|
338 | - /** |
|
339 | - * @since 2.0 |
|
340 | - * @param string $table |
|
341 | - */ |
|
342 | - public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) { |
|
343 | - $args['limit'] = 1; |
|
344 | - return self::get_var( $table, $where, $fields, $args, '', 'row' ); |
|
345 | - } |
|
346 | - |
|
347 | - /** |
|
348 | - * @param string $table |
|
349 | - */ |
|
350 | - public static function get_one_record( $table, $args = array(), $fields = '*', $order_by = '' ) { |
|
351 | - _deprecated_function( __FUNCTION__, '2.0', 'FrmDb::get_row' ); |
|
325 | + $cache_key = str_replace( array( ' ', ',' ), '_', trim( implode('_', FrmAppHelper::array_flatten( $where ) ) . implode( '_', $args ) . $field .'_'. $type, ' WHERE' ) ); |
|
326 | + $results = FrmAppHelper::check_cache( $cache_key, $group, $query, 'get_'. $type ); |
|
327 | + return $results; |
|
328 | + } |
|
329 | + |
|
330 | + /** |
|
331 | + * @param string $table |
|
332 | + * @param array $where |
|
333 | + */ |
|
334 | + public static function get_col( $table, $where = array(), $field = 'id', $args = array(), $limit = '' ) { |
|
335 | + return self::get_var( $table, $where, $field, $args, $limit, 'col' ); |
|
336 | + } |
|
337 | + |
|
338 | + /** |
|
339 | + * @since 2.0 |
|
340 | + * @param string $table |
|
341 | + */ |
|
342 | + public static function get_row( $table, $where = array(), $fields = '*', $args = array() ) { |
|
343 | + $args['limit'] = 1; |
|
344 | + return self::get_var( $table, $where, $fields, $args, '', 'row' ); |
|
345 | + } |
|
346 | + |
|
347 | + /** |
|
348 | + * @param string $table |
|
349 | + */ |
|
350 | + public static function get_one_record( $table, $args = array(), $fields = '*', $order_by = '' ) { |
|
351 | + _deprecated_function( __FUNCTION__, '2.0', 'FrmDb::get_row' ); |
|
352 | 352 | return self::get_var( $table, $args, $fields, array( 'order_by' => $order_by, 'limit' => 1 ), '', 'row' ); |
353 | - } |
|
354 | - |
|
355 | - public static function get_records( $table, $args = array(), $order_by = '', $limit = '', $fields = '*' ) { |
|
356 | - _deprecated_function( __FUNCTION__, '2.0', 'FrmDb::get_results' ); |
|
357 | - return self::get_results( $table, $args, $fields, compact('order_by', 'limit') ); |
|
358 | - } |
|
359 | - |
|
360 | - /** |
|
361 | - * Prepare a key/value array before DB call |
|
362 | - * @since 2.0 |
|
363 | - * @param string $table |
|
364 | - */ |
|
365 | - public static function get_results( $table, $where = array(), $fields = '*', $args = array() ) { |
|
366 | - return self::get_var( $table, $where, $fields, $args, '', 'results' ); |
|
367 | - } |
|
353 | + } |
|
354 | + |
|
355 | + public static function get_records( $table, $args = array(), $order_by = '', $limit = '', $fields = '*' ) { |
|
356 | + _deprecated_function( __FUNCTION__, '2.0', 'FrmDb::get_results' ); |
|
357 | + return self::get_results( $table, $args, $fields, compact('order_by', 'limit') ); |
|
358 | + } |
|
359 | + |
|
360 | + /** |
|
361 | + * Prepare a key/value array before DB call |
|
362 | + * @since 2.0 |
|
363 | + * @param string $table |
|
364 | + */ |
|
365 | + public static function get_results( $table, $where = array(), $fields = '*', $args = array() ) { |
|
366 | + return self::get_var( $table, $where, $fields, $args, '', 'results' ); |
|
367 | + } |
|
368 | 368 | |
369 | 369 | /** |
370 | 370 | * Check for like, not like, in, not in, =, !=, >, <, <=, >= |
@@ -400,86 +400,86 @@ discard block |
||
400 | 400 | return ''; |
401 | 401 | } |
402 | 402 | |
403 | - /** |
|
404 | - * Get 'frm_forms' from wp_frm_forms or a longer table param that includes a join |
|
405 | - * Also add the wpdb->prefix to the table if it's missing |
|
406 | - * |
|
407 | - * @param string $table |
|
408 | - * @param string $group |
|
409 | - */ |
|
410 | - private static function get_group_and_table_name( &$table, &$group ) { |
|
403 | + /** |
|
404 | + * Get 'frm_forms' from wp_frm_forms or a longer table param that includes a join |
|
405 | + * Also add the wpdb->prefix to the table if it's missing |
|
406 | + * |
|
407 | + * @param string $table |
|
408 | + * @param string $group |
|
409 | + */ |
|
410 | + private static function get_group_and_table_name( &$table, &$group ) { |
|
411 | 411 | global $wpdb, $wpmuBaseTablePrefix; |
412 | 412 | |
413 | - $table_parts = explode(' ', $table); |
|
414 | - $group = reset($table_parts); |
|
415 | - $group = str_replace( $wpdb->prefix, '', $group ); |
|
413 | + $table_parts = explode(' ', $table); |
|
414 | + $group = reset($table_parts); |
|
415 | + $group = str_replace( $wpdb->prefix, '', $group ); |
|
416 | 416 | |
417 | 417 | $prefix = $wpmuBaseTablePrefix ? $wpmuBaseTablePrefix : $wpdb->base_prefix; |
418 | 418 | $group = str_replace( $prefix, '', $group ); |
419 | 419 | |
420 | - if ( $group == $table ) { |
|
421 | - $table = $wpdb->prefix . $table; |
|
422 | - } |
|
420 | + if ( $group == $table ) { |
|
421 | + $table = $wpdb->prefix . $table; |
|
422 | + } |
|
423 | 423 | |
424 | 424 | // switch to singular group name |
425 | 425 | $group = rtrim( $group, 's' ); |
426 | - } |
|
426 | + } |
|
427 | 427 | |
428 | - private static function convert_options_to_array( &$args, $order_by = '', $limit = '' ) { |
|
429 | - if ( ! is_array($args) ) { |
|
428 | + private static function convert_options_to_array( &$args, $order_by = '', $limit = '' ) { |
|
429 | + if ( ! is_array($args) ) { |
|
430 | 430 | $args = array( 'order_by' => $args ); |
431 | - } |
|
431 | + } |
|
432 | 432 | |
433 | - if ( ! empty( $order_by ) ) { |
|
434 | - $args['order_by'] = $order_by; |
|
435 | - } |
|
433 | + if ( ! empty( $order_by ) ) { |
|
434 | + $args['order_by'] = $order_by; |
|
435 | + } |
|
436 | 436 | |
437 | - if ( ! empty( $limit ) ) { |
|
438 | - $args['limit'] = $limit; |
|
439 | - } |
|
437 | + if ( ! empty( $limit ) ) { |
|
438 | + $args['limit'] = $limit; |
|
439 | + } |
|
440 | 440 | |
441 | - $temp_args = $args; |
|
442 | - foreach ( $temp_args as $k => $v ) { |
|
443 | - if ( $v == '' ) { |
|
441 | + $temp_args = $args; |
|
442 | + foreach ( $temp_args as $k => $v ) { |
|
443 | + if ( $v == '' ) { |
|
444 | 444 | unset( $args[ $k ] ); |
445 | - continue; |
|
446 | - } |
|
445 | + continue; |
|
446 | + } |
|
447 | 447 | |
448 | - if ( $k == 'limit' ) { |
|
448 | + if ( $k == 'limit' ) { |
|
449 | 449 | $args[ $k ] = FrmAppHelper::esc_limit( $v ); |
450 | - } |
|
451 | - $db_name = strtoupper( str_replace( '_', ' ', $k ) ); |
|
452 | - if ( strpos( $v, $db_name ) === false ) { |
|
450 | + } |
|
451 | + $db_name = strtoupper( str_replace( '_', ' ', $k ) ); |
|
452 | + if ( strpos( $v, $db_name ) === false ) { |
|
453 | 453 | $args[ $k ] = $db_name . ' ' . $v; |
454 | - } |
|
455 | - } |
|
456 | - } |
|
454 | + } |
|
455 | + } |
|
456 | + } |
|
457 | 457 | |
458 | - public function uninstall() { |
|
458 | + public function uninstall() { |
|
459 | 459 | if ( ! current_user_can( 'administrator' ) ) { |
460 | - $frm_settings = FrmAppHelper::get_settings(); |
|
461 | - wp_die($frm_settings->admin_permission); |
|
462 | - } |
|
463 | - |
|
464 | - global $wpdb, $wp_roles; |
|
465 | - |
|
466 | - $wpdb->query( 'DROP TABLE IF EXISTS '. $this->fields ); |
|
467 | - $wpdb->query( 'DROP TABLE IF EXISTS '. $this->forms ); |
|
468 | - $wpdb->query( 'DROP TABLE IF EXISTS '. $this->entries ); |
|
469 | - $wpdb->query( 'DROP TABLE IF EXISTS '. $this->entry_metas ); |
|
470 | - |
|
471 | - delete_option('frm_options'); |
|
472 | - delete_option('frm_db_version'); |
|
473 | - |
|
474 | - //delete roles |
|
475 | - $frm_roles = FrmAppHelper::frm_capabilities(); |
|
476 | - $roles = get_editable_roles(); |
|
477 | - foreach ( $frm_roles as $frm_role => $frm_role_description ) { |
|
478 | - foreach ( $roles as $role => $details ) { |
|
479 | - $wp_roles->remove_cap( $role, $frm_role ); |
|
480 | - unset($role, $details); |
|
481 | - } |
|
482 | - unset($frm_role, $frm_role_description); |
|
460 | + $frm_settings = FrmAppHelper::get_settings(); |
|
461 | + wp_die($frm_settings->admin_permission); |
|
462 | + } |
|
463 | + |
|
464 | + global $wpdb, $wp_roles; |
|
465 | + |
|
466 | + $wpdb->query( 'DROP TABLE IF EXISTS '. $this->fields ); |
|
467 | + $wpdb->query( 'DROP TABLE IF EXISTS '. $this->forms ); |
|
468 | + $wpdb->query( 'DROP TABLE IF EXISTS '. $this->entries ); |
|
469 | + $wpdb->query( 'DROP TABLE IF EXISTS '. $this->entry_metas ); |
|
470 | + |
|
471 | + delete_option('frm_options'); |
|
472 | + delete_option('frm_db_version'); |
|
473 | + |
|
474 | + //delete roles |
|
475 | + $frm_roles = FrmAppHelper::frm_capabilities(); |
|
476 | + $roles = get_editable_roles(); |
|
477 | + foreach ( $frm_roles as $frm_role => $frm_role_description ) { |
|
478 | + foreach ( $roles as $role => $details ) { |
|
479 | + $wp_roles->remove_cap( $role, $frm_role ); |
|
480 | + unset($role, $details); |
|
481 | + } |
|
482 | + unset($frm_role, $frm_role_description); |
|
483 | 483 | } |
484 | 484 | unset($roles, $frm_roles); |
485 | 485 | |
@@ -503,9 +503,9 @@ discard block |
||
503 | 503 | |
504 | 504 | $wpdb->query( $wpdb->prepare( 'DELETE FROM '. $wpdb->options .' WHERE option_name LIKE %s OR option_name LIKE %s', '_transient_timeout_frm_form_fields_%', '_transient_frm_form_fields_%' ) ); |
505 | 505 | |
506 | - do_action('frm_after_uninstall'); |
|
507 | - return true; |
|
508 | - } |
|
506 | + do_action('frm_after_uninstall'); |
|
507 | + return true; |
|
508 | + } |
|
509 | 509 | |
510 | 510 | /** |
511 | 511 | * Migrate old styling settings. If sites are using the old |
@@ -544,150 +544,150 @@ discard block |
||
544 | 544 | } |
545 | 545 | } |
546 | 546 | |
547 | - /** |
|
548 | - * Change field size from character to pixel -- Multiply by 9 |
|
549 | - */ |
|
550 | - private function migrate_to_17() { |
|
551 | - global $wpdb; |
|
547 | + /** |
|
548 | + * Change field size from character to pixel -- Multiply by 9 |
|
549 | + */ |
|
550 | + private function migrate_to_17() { |
|
551 | + global $wpdb; |
|
552 | 552 | $pixel_conversion = 9; |
553 | 553 | |
554 | - // Get query arguments |
|
554 | + // Get query arguments |
|
555 | 555 | $field_types = array( 'textarea', 'text', 'number', 'email', 'url', 'rte', 'date', 'phone', 'password', 'image', 'tag', 'file' ); |
556 | 556 | $query = array( 'type' => $field_types, 'field_options like' => 's:4:"size";', 'field_options not like' => 's:4:"size";s:0:' ); |
557 | 557 | |
558 | - // Get results |
|
558 | + // Get results |
|
559 | 559 | $fields = FrmDb::get_results( $this->fields, $query, 'id, field_options' ); |
560 | 560 | |
561 | - $updated = 0; |
|
562 | - foreach ( $fields as $f ) { |
|
563 | - $f->field_options = maybe_unserialize($f->field_options); |
|
564 | - if ( empty($f->field_options['size']) || ! is_numeric($f->field_options['size']) ) { |
|
565 | - continue; |
|
566 | - } |
|
561 | + $updated = 0; |
|
562 | + foreach ( $fields as $f ) { |
|
563 | + $f->field_options = maybe_unserialize($f->field_options); |
|
564 | + if ( empty($f->field_options['size']) || ! is_numeric($f->field_options['size']) ) { |
|
565 | + continue; |
|
566 | + } |
|
567 | 567 | |
568 | 568 | $f->field_options['size'] = round( $pixel_conversion * (int) $f->field_options['size'] ); |
569 | - $f->field_options['size'] .= 'px'; |
|
570 | - $u = FrmField::update( $f->id, array( 'field_options' => $f->field_options ) ); |
|
571 | - if ( $u ) { |
|
572 | - $updated++; |
|
573 | - } |
|
574 | - unset($f); |
|
575 | - } |
|
576 | - |
|
577 | - // Change the characters in widgets to pixels |
|
578 | - $widgets = get_option('widget_frm_show_form'); |
|
579 | - if ( empty($widgets) ) { |
|
580 | - return; |
|
581 | - } |
|
582 | - |
|
583 | - $widgets = maybe_unserialize($widgets); |
|
584 | - foreach ( $widgets as $k => $widget ) { |
|
585 | - if ( ! is_array($widget) || ! isset($widget['size']) ) { |
|
586 | - continue; |
|
587 | - } |
|
569 | + $f->field_options['size'] .= 'px'; |
|
570 | + $u = FrmField::update( $f->id, array( 'field_options' => $f->field_options ) ); |
|
571 | + if ( $u ) { |
|
572 | + $updated++; |
|
573 | + } |
|
574 | + unset($f); |
|
575 | + } |
|
576 | + |
|
577 | + // Change the characters in widgets to pixels |
|
578 | + $widgets = get_option('widget_frm_show_form'); |
|
579 | + if ( empty($widgets) ) { |
|
580 | + return; |
|
581 | + } |
|
582 | + |
|
583 | + $widgets = maybe_unserialize($widgets); |
|
584 | + foreach ( $widgets as $k => $widget ) { |
|
585 | + if ( ! is_array($widget) || ! isset($widget['size']) ) { |
|
586 | + continue; |
|
587 | + } |
|
588 | 588 | $size = round( $pixel_conversion * (int) $widget['size'] ); |
589 | - $size .= 'px'; |
|
589 | + $size .= 'px'; |
|
590 | 590 | $widgets[ $k ]['size'] = $size; |
591 | - } |
|
592 | - update_option('widget_frm_show_form', $widgets); |
|
593 | - } |
|
594 | - |
|
595 | - /** |
|
596 | - * Migrate post and email notification settings into actions |
|
597 | - */ |
|
598 | - private function migrate_to_16() { |
|
599 | - global $wpdb; |
|
600 | - |
|
601 | - $forms = FrmDb::get_results( $this->forms, array(), 'id, options, is_template, default_template' ); |
|
602 | - |
|
603 | - /** |
|
604 | - * Old email settings format: |
|
605 | - * email_to: Email or field id |
|
606 | - * also_email_to: array of fields ids |
|
607 | - * reply_to: Email, field id, 'custom' |
|
608 | - * cust_reply_to: string |
|
609 | - * reply_to_name: field id, 'custom' |
|
610 | - * cust_reply_to_name: string |
|
611 | - * plain_text: 0|1 |
|
612 | - * email_message: string or '' |
|
613 | - * email_subject: string or '' |
|
614 | - * inc_user_info: 0|1 |
|
615 | - * update_email: 0, 1, 2 |
|
616 | - * |
|
617 | - * Old autoresponder settings format: |
|
618 | - * auto_responder: 0|1 |
|
619 | - * ar_email_message: string or '' |
|
620 | - * ar_email_to: field id |
|
621 | - * ar_plain_text: 0|1 |
|
622 | - * ar_reply_to_name: string |
|
623 | - * ar_reply_to: string |
|
624 | - * ar_email_subject: string |
|
625 | - * ar_update_email: 0, 1, 2 |
|
626 | - * |
|
627 | - * New email settings: |
|
628 | - * post_content: json settings |
|
629 | - * post_title: form id |
|
630 | - * post_excerpt: message |
|
631 | - * |
|
632 | - */ |
|
633 | - |
|
634 | - foreach ( $forms as $form ) { |
|
591 | + } |
|
592 | + update_option('widget_frm_show_form', $widgets); |
|
593 | + } |
|
594 | + |
|
595 | + /** |
|
596 | + * Migrate post and email notification settings into actions |
|
597 | + */ |
|
598 | + private function migrate_to_16() { |
|
599 | + global $wpdb; |
|
600 | + |
|
601 | + $forms = FrmDb::get_results( $this->forms, array(), 'id, options, is_template, default_template' ); |
|
602 | + |
|
603 | + /** |
|
604 | + * Old email settings format: |
|
605 | + * email_to: Email or field id |
|
606 | + * also_email_to: array of fields ids |
|
607 | + * reply_to: Email, field id, 'custom' |
|
608 | + * cust_reply_to: string |
|
609 | + * reply_to_name: field id, 'custom' |
|
610 | + * cust_reply_to_name: string |
|
611 | + * plain_text: 0|1 |
|
612 | + * email_message: string or '' |
|
613 | + * email_subject: string or '' |
|
614 | + * inc_user_info: 0|1 |
|
615 | + * update_email: 0, 1, 2 |
|
616 | + * |
|
617 | + * Old autoresponder settings format: |
|
618 | + * auto_responder: 0|1 |
|
619 | + * ar_email_message: string or '' |
|
620 | + * ar_email_to: field id |
|
621 | + * ar_plain_text: 0|1 |
|
622 | + * ar_reply_to_name: string |
|
623 | + * ar_reply_to: string |
|
624 | + * ar_email_subject: string |
|
625 | + * ar_update_email: 0, 1, 2 |
|
626 | + * |
|
627 | + * New email settings: |
|
628 | + * post_content: json settings |
|
629 | + * post_title: form id |
|
630 | + * post_excerpt: message |
|
631 | + * |
|
632 | + */ |
|
633 | + |
|
634 | + foreach ( $forms as $form ) { |
|
635 | 635 | if ( $form->is_template && $form->default_template ) { |
636 | 636 | // don't migrate the default templates since the email will be added anyway |
637 | 637 | continue; |
638 | 638 | } |
639 | 639 | |
640 | - // Format form options |
|
641 | - $form_options = maybe_unserialize($form->options); |
|
640 | + // Format form options |
|
641 | + $form_options = maybe_unserialize($form->options); |
|
642 | 642 | |
643 | - // Migrate settings to actions |
|
644 | - FrmXMLHelper::migrate_form_settings_to_actions( $form_options, $form->id ); |
|
645 | - } |
|
646 | - } |
|
643 | + // Migrate settings to actions |
|
644 | + FrmXMLHelper::migrate_form_settings_to_actions( $form_options, $form->id ); |
|
645 | + } |
|
646 | + } |
|
647 | 647 | |
648 | - private function migrate_to_11() { |
|
649 | - global $wpdb; |
|
648 | + private function migrate_to_11() { |
|
649 | + global $wpdb; |
|
650 | 650 | |
651 | - $forms = FrmDb::get_results( $this->forms, array(), 'id, options'); |
|
651 | + $forms = FrmDb::get_results( $this->forms, array(), 'id, options'); |
|
652 | 652 | |
653 | - $sending = __( 'Sending', 'formidable' ); |
|
654 | - $img = FrmAppHelper::plugin_url() .'/images/ajax_loader.gif'; |
|
655 | - $old_default_html = <<<DEFAULT_HTML |
|
653 | + $sending = __( 'Sending', 'formidable' ); |
|
654 | + $img = FrmAppHelper::plugin_url() .'/images/ajax_loader.gif'; |
|
655 | + $old_default_html = <<<DEFAULT_HTML |
|
656 | 656 | <div class="frm_submit"> |
657 | 657 | [if back_button]<input type="submit" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" [back_hook] />[/if back_button] |
658 | 658 | <input type="submit" value="[button_label]" [button_action] /> |
659 | 659 | <img class="frm_ajax_loading" src="$img" alt="$sending" style="visibility:hidden;" /> |
660 | 660 | </div> |
661 | 661 | DEFAULT_HTML; |
662 | - unset($sending, $img); |
|
662 | + unset($sending, $img); |
|
663 | 663 | |
664 | - $new_default_html = FrmFormsHelper::get_default_html('submit'); |
|
665 | - $draft_link = FrmFormsHelper::get_draft_link(); |
|
664 | + $new_default_html = FrmFormsHelper::get_default_html('submit'); |
|
665 | + $draft_link = FrmFormsHelper::get_draft_link(); |
|
666 | 666 | foreach ( $forms as $form ) { |
667 | - $form->options = maybe_unserialize($form->options); |
|
668 | - if ( ! isset($form->options['submit_html']) || empty($form->options['submit_html']) ) { |
|
669 | - continue; |
|
670 | - } |
|
667 | + $form->options = maybe_unserialize($form->options); |
|
668 | + if ( ! isset($form->options['submit_html']) || empty($form->options['submit_html']) ) { |
|
669 | + continue; |
|
670 | + } |
|
671 | 671 | |
672 | - if ( $form->options['submit_html'] != $new_default_html && $form->options['submit_html'] == $old_default_html ) { |
|
673 | - $form->options['submit_html'] = $new_default_html; |
|
672 | + if ( $form->options['submit_html'] != $new_default_html && $form->options['submit_html'] == $old_default_html ) { |
|
673 | + $form->options['submit_html'] = $new_default_html; |
|
674 | 674 | $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) ); |
675 | 675 | } else if ( ! strpos( $form->options['submit_html'], 'save_draft' ) ) { |
676 | - $form->options['submit_html'] = preg_replace('~\<\/div\>(?!.*\<\/div\>)~', $draft_link ."\r\n</div>", $form->options['submit_html']); |
|
676 | + $form->options['submit_html'] = preg_replace('~\<\/div\>(?!.*\<\/div\>)~', $draft_link ."\r\n</div>", $form->options['submit_html']); |
|
677 | 677 | $wpdb->update( $this->forms, array( 'options' => serialize( $form->options ) ), array( 'id' => $form->id ) ); |
678 | - } |
|
679 | - unset($form); |
|
680 | - } |
|
681 | - unset($forms); |
|
682 | - } |
|
678 | + } |
|
679 | + unset($form); |
|
680 | + } |
|
681 | + unset($forms); |
|
682 | + } |
|
683 | 683 | |
684 | - private function migrate_to_6() { |
|
685 | - global $wpdb; |
|
684 | + private function migrate_to_6() { |
|
685 | + global $wpdb; |
|
686 | 686 | |
687 | 687 | $no_save = array_merge( FrmField::no_save_fields(), array( 'form', 'hidden', 'user_id' ) ); |
688 | 688 | $fields = FrmDb::get_results( $this->fields, array( 'type NOT' => $no_save ), 'id, field_options' ); |
689 | 689 | |
690 | - $default_html = <<<DEFAULT_HTML |
|
690 | + $default_html = <<<DEFAULT_HTML |
|
691 | 691 | <div id="frm_field_[id]_container" class="form-field [required_class] [error_class]"> |
692 | 692 | <label class="frm_pos_[label_position]">[field_name] |
693 | 693 | <span class="frm_required">[required_label]</span> |
@@ -697,7 +697,7 @@ discard block |
||
697 | 697 | </div> |
698 | 698 | DEFAULT_HTML; |
699 | 699 | |
700 | - $old_default_html = <<<DEFAULT_HTML |
|
700 | + $old_default_html = <<<DEFAULT_HTML |
|
701 | 701 | <div id="frm_field_[id]_container" class="form-field [required_class] [error_class]"> |
702 | 702 | <label class="frm_pos_[label_position]">[field_name] |
703 | 703 | <span class="frm_required">[required_label]</span> |
@@ -707,23 +707,23 @@ discard block |
||
707 | 707 | </div> |
708 | 708 | DEFAULT_HTML; |
709 | 709 | |
710 | - $new_default_html = FrmFieldsHelper::get_default_html('text'); |
|
711 | - foreach ( $fields as $field ) { |
|
712 | - $field->field_options = maybe_unserialize($field->field_options); |
|
710 | + $new_default_html = FrmFieldsHelper::get_default_html('text'); |
|
711 | + foreach ( $fields as $field ) { |
|
712 | + $field->field_options = maybe_unserialize($field->field_options); |
|
713 | 713 | if ( ! FrmField::is_option_empty( $field, 'custom_html' ) || $field->field_options['custom_html'] == $default_html || $field->field_options['custom_html'] == $old_default_html ) { |
714 | - $field->field_options['custom_html'] = $new_default_html; |
|
714 | + $field->field_options['custom_html'] = $new_default_html; |
|
715 | 715 | $wpdb->update( $this->fields, array( 'field_options' => maybe_serialize( $field->field_options ) ), array( 'id' => $field->id ) ); |
716 | - } |
|
717 | - unset($field); |
|
718 | - } |
|
719 | - unset($default_html, $old_default_html, $fields); |
|
720 | - } |
|
721 | - |
|
722 | - private function migrate_to_4() { |
|
723 | - global $wpdb; |
|
716 | + } |
|
717 | + unset($field); |
|
718 | + } |
|
719 | + unset($default_html, $old_default_html, $fields); |
|
720 | + } |
|
721 | + |
|
722 | + private function migrate_to_4() { |
|
723 | + global $wpdb; |
|
724 | 724 | $user_ids = FrmEntryMeta::getAll( array( 'fi.type' => 'user_id' ) ); |
725 | - foreach ( $user_ids as $user_id ) { |
|
725 | + foreach ( $user_ids as $user_id ) { |
|
726 | 726 | $wpdb->update( $this->entries, array( 'user_id' => $user_id->meta_value ), array( 'id' => $user_id->item_id ) ); |
727 | - } |
|
728 | - } |
|
727 | + } |
|
728 | + } |
|
729 | 729 | } |
@@ -6,11 +6,11 @@ discard block |
||
6 | 6 | class FrmEntry { |
7 | 7 | |
8 | 8 | /** |
9 | - * Create a new entry |
|
10 | - * |
|
11 | - * @param array $values |
|
12 | - * @return int | boolean $entry_id |
|
13 | - */ |
|
9 | + * Create a new entry |
|
10 | + * |
|
11 | + * @param array $values |
|
12 | + * @return int | boolean $entry_id |
|
13 | + */ |
|
14 | 14 | public static function create( $values ) { |
15 | 15 | $entry_id = self::create_entry( $values, 'standard' ); |
16 | 16 | |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | } |
19 | 19 | |
20 | 20 | /** |
21 | - * Create a new entry with some differences depending on type |
|
22 | - * |
|
23 | - * @param array $values |
|
24 | - * @param string $type |
|
25 | - * @return int | boolean $entry_id |
|
26 | - */ |
|
21 | + * Create a new entry with some differences depending on type |
|
22 | + * |
|
23 | + * @param array $values |
|
24 | + * @param string $type |
|
25 | + * @return int | boolean $entry_id |
|
26 | + */ |
|
27 | 27 | private static function create_entry( $values, $type ) { |
28 | 28 | $new_values = self::before_insert_entry_in_database( $values, $type ); |
29 | 29 | |
@@ -37,110 +37,110 @@ discard block |
||
37 | 37 | return $entry_id; |
38 | 38 | } |
39 | 39 | |
40 | - /** |
|
41 | - * check for duplicate entries created in the last minute |
|
42 | - * @return boolean |
|
43 | - */ |
|
40 | + /** |
|
41 | + * check for duplicate entries created in the last minute |
|
42 | + * @return boolean |
|
43 | + */ |
|
44 | 44 | public static function is_duplicate( $new_values, $values ) { |
45 | 45 | if ( defined('WP_IMPORTING') && WP_IMPORTING ) { |
46 | - return false; |
|
47 | - } |
|
46 | + return false; |
|
47 | + } |
|
48 | 48 | |
49 | 49 | $duplicate_entry_time = apply_filters( 'frm_time_to_check_duplicates', 60, $new_values ); |
50 | 50 | if ( empty( $duplicate_entry_time ) ) { |
51 | 51 | return false; |
52 | 52 | } |
53 | 53 | |
54 | - $check_val = $new_values; |
|
54 | + $check_val = $new_values; |
|
55 | 55 | $check_val['created_at >'] = date( 'Y-m-d H:i:s', ( strtotime( $new_values['created_at'] ) - absint( $duplicate_entry_time ) ) ); |
56 | 56 | |
57 | 57 | unset( $check_val['created_at'], $check_val['updated_at'] ); |
58 | 58 | unset( $check_val['is_draft'], $check_val['id'], $check_val['item_key'] ); |
59 | 59 | |
60 | - if ( $new_values['item_key'] == $new_values['name'] ) { |
|
61 | - unset($check_val['name']); |
|
62 | - } |
|
60 | + if ( $new_values['item_key'] == $new_values['name'] ) { |
|
61 | + unset($check_val['name']); |
|
62 | + } |
|
63 | 63 | |
64 | - global $wpdb; |
|
64 | + global $wpdb; |
|
65 | 65 | $entry_exists = FrmDb::get_col( $wpdb->prefix . 'frm_items', $check_val, 'id', array( 'order_by' => 'created_at DESC' ) ); |
66 | 66 | |
67 | - if ( ! $entry_exists || empty($entry_exists) || ! isset($values['item_meta']) ) { |
|
68 | - return false; |
|
69 | - } |
|
67 | + if ( ! $entry_exists || empty($entry_exists) || ! isset($values['item_meta']) ) { |
|
68 | + return false; |
|
69 | + } |
|
70 | 70 | |
71 | - $is_duplicate = false; |
|
72 | - foreach ( $entry_exists as $entry_exist ) { |
|
73 | - $is_duplicate = true; |
|
71 | + $is_duplicate = false; |
|
72 | + foreach ( $entry_exists as $entry_exist ) { |
|
73 | + $is_duplicate = true; |
|
74 | 74 | |
75 | - //add more checks here to make sure it's a duplicate |
|
76 | - $metas = FrmEntryMeta::get_entry_meta_info($entry_exist); |
|
77 | - $field_metas = array(); |
|
78 | - foreach ( $metas as $meta ) { |
|
75 | + //add more checks here to make sure it's a duplicate |
|
76 | + $metas = FrmEntryMeta::get_entry_meta_info($entry_exist); |
|
77 | + $field_metas = array(); |
|
78 | + foreach ( $metas as $meta ) { |
|
79 | 79 | $field_metas[ $meta->field_id ] = $meta->meta_value; |
80 | - } |
|
81 | - |
|
82 | - // If prev entry is empty and current entry is not, they are not duplicates |
|
83 | - $filtered_vals = array_filter( $values['item_meta'] ); |
|
84 | - if ( empty( $field_metas ) && ! empty( $filtered_vals ) ) { |
|
85 | - return false; |
|
86 | - } |
|
87 | - |
|
88 | - $diff = array_diff_assoc($field_metas, array_map('maybe_serialize', $values['item_meta'])); |
|
89 | - foreach ( $diff as $field_id => $meta_value ) { |
|
90 | - if ( ! empty($meta_value) ) { |
|
91 | - $is_duplicate = false; |
|
92 | - continue; |
|
93 | - } |
|
94 | - } |
|
95 | - |
|
96 | - if ( $is_duplicate ) { |
|
80 | + } |
|
81 | + |
|
82 | + // If prev entry is empty and current entry is not, they are not duplicates |
|
83 | + $filtered_vals = array_filter( $values['item_meta'] ); |
|
84 | + if ( empty( $field_metas ) && ! empty( $filtered_vals ) ) { |
|
85 | + return false; |
|
86 | + } |
|
87 | + |
|
88 | + $diff = array_diff_assoc($field_metas, array_map('maybe_serialize', $values['item_meta'])); |
|
89 | + foreach ( $diff as $field_id => $meta_value ) { |
|
90 | + if ( ! empty($meta_value) ) { |
|
91 | + $is_duplicate = false; |
|
92 | + continue; |
|
93 | + } |
|
94 | + } |
|
95 | + |
|
96 | + if ( $is_duplicate ) { |
|
97 | 97 | break; |
98 | - } |
|
99 | - } |
|
98 | + } |
|
99 | + } |
|
100 | 100 | |
101 | - return $is_duplicate; |
|
102 | - } |
|
101 | + return $is_duplicate; |
|
102 | + } |
|
103 | 103 | |
104 | - public static function duplicate( $id ) { |
|
105 | - global $wpdb; |
|
104 | + public static function duplicate( $id ) { |
|
105 | + global $wpdb; |
|
106 | 106 | |
107 | - $values = self::getOne( $id ); |
|
107 | + $values = self::getOne( $id ); |
|
108 | 108 | |
109 | - $new_values = array(); |
|
110 | - $new_values['item_key'] = FrmAppHelper::get_unique_key('', $wpdb->prefix .'frm_items', 'item_key'); |
|
111 | - $new_values['name'] = $values->name; |
|
112 | - $new_values['is_draft'] = $values->is_draft; |
|
113 | - $new_values['user_id'] = $new_values['updated_by'] = (int) $values->user_id; |
|
114 | - $new_values['form_id'] = $values->form_id ? (int) $values->form_id: null; |
|
115 | - $new_values['created_at'] = $new_values['updated_at'] = current_time('mysql', 1); |
|
109 | + $new_values = array(); |
|
110 | + $new_values['item_key'] = FrmAppHelper::get_unique_key('', $wpdb->prefix .'frm_items', 'item_key'); |
|
111 | + $new_values['name'] = $values->name; |
|
112 | + $new_values['is_draft'] = $values->is_draft; |
|
113 | + $new_values['user_id'] = $new_values['updated_by'] = (int) $values->user_id; |
|
114 | + $new_values['form_id'] = $values->form_id ? (int) $values->form_id: null; |
|
115 | + $new_values['created_at'] = $new_values['updated_at'] = current_time('mysql', 1); |
|
116 | 116 | |
117 | - $query_results = $wpdb->insert( $wpdb->prefix .'frm_items', $new_values ); |
|
118 | - if ( ! $query_results ) { |
|
119 | - return false; |
|
120 | - } |
|
117 | + $query_results = $wpdb->insert( $wpdb->prefix .'frm_items', $new_values ); |
|
118 | + if ( ! $query_results ) { |
|
119 | + return false; |
|
120 | + } |
|
121 | 121 | |
122 | - $entry_id = $wpdb->insert_id; |
|
122 | + $entry_id = $wpdb->insert_id; |
|
123 | 123 | |
124 | - global $frm_vars; |
|
125 | - if ( ! isset($frm_vars['saved_entries']) ) { |
|
126 | - $frm_vars['saved_entries'] = array(); |
|
127 | - } |
|
128 | - $frm_vars['saved_entries'][] = (int) $entry_id; |
|
124 | + global $frm_vars; |
|
125 | + if ( ! isset($frm_vars['saved_entries']) ) { |
|
126 | + $frm_vars['saved_entries'] = array(); |
|
127 | + } |
|
128 | + $frm_vars['saved_entries'][] = (int) $entry_id; |
|
129 | 129 | |
130 | - FrmEntryMeta::duplicate_entry_metas($id, $entry_id); |
|
130 | + FrmEntryMeta::duplicate_entry_metas($id, $entry_id); |
|
131 | 131 | self::clear_cache(); |
132 | 132 | |
133 | 133 | do_action( 'frm_after_duplicate_entry', $entry_id, $new_values['form_id'], array( 'old_id' => $id ) ); |
134 | - return $entry_id; |
|
135 | - } |
|
134 | + return $entry_id; |
|
135 | + } |
|
136 | 136 | |
137 | 137 | /** |
138 | - * Update an entry (not via XML) |
|
139 | - * |
|
140 | - * @param int $id |
|
141 | - * @param array $values |
|
142 | - * @return boolean|int $update_results |
|
143 | - */ |
|
138 | + * Update an entry (not via XML) |
|
139 | + * |
|
140 | + * @param int $id |
|
141 | + * @param array $values |
|
142 | + * @return boolean|int $update_results |
|
143 | + */ |
|
144 | 144 | public static function update( $id, $values ) { |
145 | 145 | $update_results = self::update_entry( $id, $values, 'standard' ); |
146 | 146 | |
@@ -148,14 +148,14 @@ discard block |
||
148 | 148 | } |
149 | 149 | |
150 | 150 | /** |
151 | - * Update an entry with some differences depending on the update type |
|
152 | - * |
|
153 | - * @since 2.0.16 |
|
154 | - * |
|
155 | - * @param int $id |
|
156 | - * @param array $values |
|
157 | - * @return boolean|int $query_results |
|
158 | - */ |
|
151 | + * Update an entry with some differences depending on the update type |
|
152 | + * |
|
153 | + * @since 2.0.16 |
|
154 | + * |
|
155 | + * @param int $id |
|
156 | + * @param array $values |
|
157 | + * @return boolean|int $query_results |
|
158 | + */ |
|
159 | 159 | private static function update_entry( $id, $values, $update_type ) { |
160 | 160 | global $wpdb; |
161 | 161 | |
@@ -174,34 +174,34 @@ discard block |
||
174 | 174 | } |
175 | 175 | |
176 | 176 | public static function &destroy( $id ) { |
177 | - global $wpdb; |
|
178 | - $id = (int) $id; |
|
177 | + global $wpdb; |
|
178 | + $id = (int) $id; |
|
179 | 179 | |
180 | 180 | $entry = self::getOne( $id ); |
181 | - if ( ! $entry ) { |
|
182 | - $result = false; |
|
183 | - return $result; |
|
184 | - } |
|
181 | + if ( ! $entry ) { |
|
182 | + $result = false; |
|
183 | + return $result; |
|
184 | + } |
|
185 | 185 | |
186 | - do_action('frm_before_destroy_entry', $id, $entry); |
|
186 | + do_action('frm_before_destroy_entry', $id, $entry); |
|
187 | 187 | |
188 | - $wpdb->query( $wpdb->prepare('DELETE FROM ' . $wpdb->prefix .'frm_item_metas WHERE item_id=%d', $id) ); |
|
189 | - $result = $wpdb->query( $wpdb->prepare('DELETE FROM ' . $wpdb->prefix .'frm_items WHERE id=%d', $id) ); |
|
188 | + $wpdb->query( $wpdb->prepare('DELETE FROM ' . $wpdb->prefix .'frm_item_metas WHERE item_id=%d', $id) ); |
|
189 | + $result = $wpdb->query( $wpdb->prepare('DELETE FROM ' . $wpdb->prefix .'frm_items WHERE id=%d', $id) ); |
|
190 | 190 | |
191 | 191 | self::clear_cache(); |
192 | 192 | |
193 | - return $result; |
|
194 | - } |
|
193 | + return $result; |
|
194 | + } |
|
195 | 195 | |
196 | 196 | public static function &update_form( $id, $value, $form_id ) { |
197 | - global $wpdb; |
|
198 | - $form_id = isset($value) ? $form_id : null; |
|
197 | + global $wpdb; |
|
198 | + $form_id = isset($value) ? $form_id : null; |
|
199 | 199 | $result = $wpdb->update( $wpdb->prefix . 'frm_items', array( 'form_id' => $form_id ), array( 'id' => $id ) ); |
200 | 200 | if ( $result ) { |
201 | 201 | self::clear_cache(); |
202 | 202 | } |
203 | - return $result; |
|
204 | - } |
|
203 | + return $result; |
|
204 | + } |
|
205 | 205 | |
206 | 206 | /** |
207 | 207 | * Clear entry caching |
@@ -237,161 +237,161 @@ discard block |
||
237 | 237 | } |
238 | 238 | |
239 | 239 | public static function getOne( $id, $meta = false ) { |
240 | - global $wpdb; |
|
240 | + global $wpdb; |
|
241 | 241 | |
242 | - $query = "SELECT it.*, fr.name as form_name, fr.form_key as form_key FROM {$wpdb->prefix}frm_items it |
|
242 | + $query = "SELECT it.*, fr.name as form_name, fr.form_key as form_key FROM {$wpdb->prefix}frm_items it |
|
243 | 243 | LEFT OUTER JOIN {$wpdb->prefix}frm_forms fr ON it.form_id=fr.id WHERE "; |
244 | 244 | |
245 | - $query .= is_numeric($id) ? 'it.id=%d' : 'it.item_key=%s'; |
|
246 | - $query_args = array( $id ); |
|
247 | - $query = $wpdb->prepare( $query, $query_args ); |
|
245 | + $query .= is_numeric($id) ? 'it.id=%d' : 'it.item_key=%s'; |
|
246 | + $query_args = array( $id ); |
|
247 | + $query = $wpdb->prepare( $query, $query_args ); |
|
248 | 248 | |
249 | - if ( ! $meta ) { |
|
250 | - $entry = FrmAppHelper::check_cache( $id .'_nometa', 'frm_entry', $query, 'get_row' ); |
|
251 | - return stripslashes_deep($entry); |
|
252 | - } |
|
249 | + if ( ! $meta ) { |
|
250 | + $entry = FrmAppHelper::check_cache( $id .'_nometa', 'frm_entry', $query, 'get_row' ); |
|
251 | + return stripslashes_deep($entry); |
|
252 | + } |
|
253 | 253 | |
254 | - $entry = FrmAppHelper::check_cache( $id, 'frm_entry' ); |
|
255 | - if ( $entry !== false ) { |
|
256 | - return stripslashes_deep($entry); |
|
257 | - } |
|
254 | + $entry = FrmAppHelper::check_cache( $id, 'frm_entry' ); |
|
255 | + if ( $entry !== false ) { |
|
256 | + return stripslashes_deep($entry); |
|
257 | + } |
|
258 | 258 | |
259 | - $entry = $wpdb->get_row( $query ); |
|
260 | - $entry = self::get_meta($entry); |
|
259 | + $entry = $wpdb->get_row( $query ); |
|
260 | + $entry = self::get_meta($entry); |
|
261 | 261 | |
262 | - return stripslashes_deep($entry); |
|
263 | - } |
|
262 | + return stripslashes_deep($entry); |
|
263 | + } |
|
264 | 264 | |
265 | 265 | public static function get_meta( $entry ) { |
266 | - if ( ! $entry ) { |
|
267 | - return $entry; |
|
268 | - } |
|
266 | + if ( ! $entry ) { |
|
267 | + return $entry; |
|
268 | + } |
|
269 | 269 | |
270 | - global $wpdb; |
|
270 | + global $wpdb; |
|
271 | 271 | $metas = FrmDb::get_results( $wpdb->prefix . 'frm_item_metas m LEFT JOIN ' . $wpdb->prefix . 'frm_fields f ON m.field_id=f.id', array( 'item_id' => $entry->id, 'field_id !' => 0 ), 'field_id, meta_value, field_key, item_id' ); |
272 | 272 | |
273 | - $entry->metas = array(); |
|
273 | + $entry->metas = array(); |
|
274 | 274 | |
275 | 275 | $include_key = apply_filters( 'frm_include_meta_keys', false ); |
276 | - foreach ( $metas as $meta_val ) { |
|
277 | - if ( $meta_val->item_id == $entry->id ) { |
|
276 | + foreach ( $metas as $meta_val ) { |
|
277 | + if ( $meta_val->item_id == $entry->id ) { |
|
278 | 278 | $entry->metas[ $meta_val->field_id ] = maybe_unserialize( $meta_val->meta_value ); |
279 | 279 | if ( $include_key ) { |
280 | 280 | $entry->metas[ $meta_val->field_key ] = $entry->metas[ $meta_val->field_id ]; |
281 | 281 | } |
282 | - continue; |
|
283 | - } |
|
282 | + continue; |
|
283 | + } |
|
284 | 284 | |
285 | - // include sub entries in an array |
|
285 | + // include sub entries in an array |
|
286 | 286 | if ( ! isset( $entry_metas[ $meta_val->field_id ] ) ) { |
287 | 287 | $entry->metas[ $meta_val->field_id ] = array(); |
288 | - } |
|
288 | + } |
|
289 | 289 | |
290 | 290 | $entry->metas[ $meta_val->field_id ][] = maybe_unserialize( $meta_val->meta_value ); |
291 | 291 | |
292 | - unset($meta_val); |
|
293 | - } |
|
294 | - unset($metas); |
|
292 | + unset($meta_val); |
|
293 | + } |
|
294 | + unset($metas); |
|
295 | 295 | |
296 | - wp_cache_set( $entry->id, $entry, 'frm_entry'); |
|
296 | + wp_cache_set( $entry->id, $entry, 'frm_entry'); |
|
297 | 297 | |
298 | - return $entry; |
|
299 | - } |
|
298 | + return $entry; |
|
299 | + } |
|
300 | 300 | |
301 | - /** |
|
302 | - * @param string $id |
|
303 | - */ |
|
301 | + /** |
|
302 | + * @param string $id |
|
303 | + */ |
|
304 | 304 | public static function &exists( $id ) { |
305 | - global $wpdb; |
|
305 | + global $wpdb; |
|
306 | 306 | |
307 | - if ( FrmAppHelper::check_cache( $id, 'frm_entry' ) ) { |
|
308 | - $exists = true; |
|
309 | - return $exists; |
|
310 | - } |
|
307 | + if ( FrmAppHelper::check_cache( $id, 'frm_entry' ) ) { |
|
308 | + $exists = true; |
|
309 | + return $exists; |
|
310 | + } |
|
311 | 311 | |
312 | - if ( is_numeric($id) ) { |
|
313 | - $where = array( 'id' => $id ); |
|
314 | - } else { |
|
315 | - $where = array( 'item_key' => $id ); |
|
316 | - } |
|
317 | - $id = FrmDb::get_var( $wpdb->prefix .'frm_items', $where ); |
|
312 | + if ( is_numeric($id) ) { |
|
313 | + $where = array( 'id' => $id ); |
|
314 | + } else { |
|
315 | + $where = array( 'item_key' => $id ); |
|
316 | + } |
|
317 | + $id = FrmDb::get_var( $wpdb->prefix .'frm_items', $where ); |
|
318 | 318 | |
319 | - $exists = ($id && $id > 0) ? true : false; |
|
320 | - return $exists; |
|
321 | - } |
|
319 | + $exists = ($id && $id > 0) ? true : false; |
|
320 | + return $exists; |
|
321 | + } |
|
322 | 322 | |
323 | - public static function getAll( $where, $order_by = '', $limit = '', $meta = false, $inc_form = true ) { |
|
323 | + public static function getAll( $where, $order_by = '', $limit = '', $meta = false, $inc_form = true ) { |
|
324 | 324 | global $wpdb; |
325 | 325 | |
326 | - $limit = FrmAppHelper::esc_limit($limit); |
|
326 | + $limit = FrmAppHelper::esc_limit($limit); |
|
327 | 327 | |
328 | - $cache_key = maybe_serialize($where) . $order_by . $limit . $inc_form; |
|
329 | - $entries = wp_cache_get($cache_key, 'frm_entry'); |
|
328 | + $cache_key = maybe_serialize($where) . $order_by . $limit . $inc_form; |
|
329 | + $entries = wp_cache_get($cache_key, 'frm_entry'); |
|
330 | 330 | |
331 | - if ( false === $entries ) { |
|
332 | - $fields = 'it.id, it.item_key, it.name, it.ip, it.form_id, it.post_id, it.user_id, it.parent_item_id, it.updated_by, it.created_at, it.updated_at, it.is_draft'; |
|
333 | - $table = $wpdb->prefix .'frm_items it '; |
|
331 | + if ( false === $entries ) { |
|
332 | + $fields = 'it.id, it.item_key, it.name, it.ip, it.form_id, it.post_id, it.user_id, it.parent_item_id, it.updated_by, it.created_at, it.updated_at, it.is_draft'; |
|
333 | + $table = $wpdb->prefix .'frm_items it '; |
|
334 | 334 | |
335 | - if ( $inc_form ) { |
|
336 | - $fields = 'it.*, fr.name as form_name,fr.form_key as form_key'; |
|
337 | - $table .= 'LEFT OUTER JOIN ' . $wpdb->prefix . 'frm_forms fr ON it.form_id=fr.id '; |
|
338 | - } |
|
335 | + if ( $inc_form ) { |
|
336 | + $fields = 'it.*, fr.name as form_name,fr.form_key as form_key'; |
|
337 | + $table .= 'LEFT OUTER JOIN ' . $wpdb->prefix . 'frm_forms fr ON it.form_id=fr.id '; |
|
338 | + } |
|
339 | 339 | |
340 | - if ( preg_match( '/ meta_([0-9]+)/', $order_by, $order_matches ) ) { |
|
341 | - // sort by a requested field |
|
342 | - $field_id = (int) $order_matches[1]; |
|
340 | + if ( preg_match( '/ meta_([0-9]+)/', $order_by, $order_matches ) ) { |
|
341 | + // sort by a requested field |
|
342 | + $field_id = (int) $order_matches[1]; |
|
343 | 343 | $fields .= ', (SELECT meta_value FROM '. $wpdb->prefix .'frm_item_metas WHERE field_id = '. $field_id .' AND item_id = it.id) as meta_'. $field_id; |
344 | 344 | unset( $order_matches, $field_id ); |
345 | - } |
|
345 | + } |
|
346 | 346 | |
347 | 347 | // prepare the query |
348 | 348 | $query = 'SELECT ' . $fields . ' FROM ' . $table . FrmAppHelper::prepend_and_or_where(' WHERE ', $where) . $order_by . $limit; |
349 | 349 | |
350 | - $entries = $wpdb->get_results($query, OBJECT_K); |
|
351 | - unset($query); |
|
350 | + $entries = $wpdb->get_results($query, OBJECT_K); |
|
351 | + unset($query); |
|
352 | 352 | |
353 | 353 | if ( ! FrmAppHelper::prevent_caching() ) { |
354 | 354 | wp_cache_set( $cache_key, $entries, 'frm_entry', 300 ); |
355 | 355 | } |
356 | - } |
|
356 | + } |
|
357 | 357 | |
358 | - if ( ! $meta || ! $entries ) { |
|
359 | - return stripslashes_deep($entries); |
|
360 | - } |
|
361 | - unset($meta); |
|
358 | + if ( ! $meta || ! $entries ) { |
|
359 | + return stripslashes_deep($entries); |
|
360 | + } |
|
361 | + unset($meta); |
|
362 | 362 | |
363 | - if ( ! is_array( $where ) && preg_match('/^it\.form_id=\d+$/', $where) ) { |
|
363 | + if ( ! is_array( $where ) && preg_match('/^it\.form_id=\d+$/', $where) ) { |
|
364 | 364 | $where = array( 'it.form_id' => substr( $where, 11 ) ); |
365 | - } |
|
365 | + } |
|
366 | 366 | |
367 | - $meta_where = array( 'field_id !' => 0 ); |
|
368 | - if ( $limit == '' && is_array($where) && count($where) == 1 && isset($where['it.form_id']) ) { |
|
369 | - $meta_where['fi.form_id'] = $where['it.form_id']; |
|
370 | - } else { |
|
371 | - $meta_where['item_id'] = array_keys( $entries ); |
|
372 | - } |
|
367 | + $meta_where = array( 'field_id !' => 0 ); |
|
368 | + if ( $limit == '' && is_array($where) && count($where) == 1 && isset($where['it.form_id']) ) { |
|
369 | + $meta_where['fi.form_id'] = $where['it.form_id']; |
|
370 | + } else { |
|
371 | + $meta_where['item_id'] = array_keys( $entries ); |
|
372 | + } |
|
373 | 373 | |
374 | - $metas = FrmDb::get_results( $wpdb->prefix . 'frm_item_metas it LEFT OUTER JOIN ' . $wpdb->prefix . 'frm_fields fi ON (it.field_id = fi.id)', $meta_where, 'item_id, meta_value, field_id, field_key, form_id' ); |
|
374 | + $metas = FrmDb::get_results( $wpdb->prefix . 'frm_item_metas it LEFT OUTER JOIN ' . $wpdb->prefix . 'frm_fields fi ON (it.field_id = fi.id)', $meta_where, 'item_id, meta_value, field_id, field_key, form_id' ); |
|
375 | 375 | |
376 | - unset( $meta_where ); |
|
376 | + unset( $meta_where ); |
|
377 | 377 | |
378 | - if ( ! $metas ) { |
|
379 | - return stripslashes_deep($entries); |
|
380 | - } |
|
378 | + if ( ! $metas ) { |
|
379 | + return stripslashes_deep($entries); |
|
380 | + } |
|
381 | 381 | |
382 | - foreach ( $metas as $m_key => $meta_val ) { |
|
383 | - if ( ! isset( $entries[ $meta_val->item_id ] ) ) { |
|
384 | - continue; |
|
385 | - } |
|
382 | + foreach ( $metas as $m_key => $meta_val ) { |
|
383 | + if ( ! isset( $entries[ $meta_val->item_id ] ) ) { |
|
384 | + continue; |
|
385 | + } |
|
386 | 386 | |
387 | - if ( ! isset( $entries[ $meta_val->item_id ]->metas ) ) { |
|
387 | + if ( ! isset( $entries[ $meta_val->item_id ]->metas ) ) { |
|
388 | 388 | $entries[ $meta_val->item_id ]->metas = array(); |
389 | - } |
|
389 | + } |
|
390 | 390 | |
391 | 391 | $entries[ $meta_val->item_id ]->metas[ $meta_val->field_id ] = maybe_unserialize( $meta_val->meta_value ); |
392 | 392 | |
393 | - unset($m_key, $meta_val); |
|
394 | - } |
|
393 | + unset($m_key, $meta_val); |
|
394 | + } |
|
395 | 395 | |
396 | 396 | if ( ! FrmAppHelper::prevent_caching() ) { |
397 | 397 | foreach ( $entries as $entry ) { |
@@ -400,47 +400,47 @@ discard block |
||
400 | 400 | } |
401 | 401 | } |
402 | 402 | |
403 | - return stripslashes_deep($entries); |
|
404 | - } |
|
405 | - |
|
406 | - // Pagination Methods |
|
407 | - public static function getRecordCount( $where = '' ) { |
|
408 | - global $wpdb; |
|
409 | - $table_join = $wpdb->prefix .'frm_items it LEFT OUTER JOIN '. $wpdb->prefix .'frm_forms fr ON it.form_id=fr.id'; |
|
410 | - |
|
411 | - if ( is_numeric($where) ) { |
|
412 | - $table_join = 'frm_items'; |
|
413 | - $where = array( 'form_id' => $where ); |
|
414 | - } |
|
415 | - |
|
416 | - if ( is_array( $where ) ) { |
|
417 | - $count = FrmDb::get_count( $table_join, $where ); |
|
418 | - } else { |
|
419 | - global $wpdb; |
|
420 | - $cache_key = 'count_'. maybe_serialize($where); |
|
421 | - $query = 'SELECT COUNT(*) FROM '. $table_join . FrmAppHelper::prepend_and_or_where(' WHERE ', $where); |
|
422 | - $count = FrmAppHelper::check_cache($cache_key, 'frm_entry', $query, 'get_var'); |
|
423 | - } |
|
424 | - |
|
425 | - return $count; |
|
426 | - } |
|
427 | - |
|
428 | - public static function getPageCount( $p_size, $where = '' ) { |
|
429 | - if ( is_numeric($where) ) { |
|
430 | - return ceil( (int) $where / (int) $p_size ); |
|
431 | - } else { |
|
432 | - return ceil( (int) self::getRecordCount($where) / (int) $p_size ); |
|
433 | - } |
|
434 | - } |
|
435 | - |
|
436 | - /** |
|
437 | - * Prepare the data before inserting it into the database |
|
438 | - * |
|
439 | - * @since 2.0.16 |
|
440 | - * @param array $values |
|
441 | - * @param string $type |
|
442 | - * @return array $new_values |
|
443 | - */ |
|
403 | + return stripslashes_deep($entries); |
|
404 | + } |
|
405 | + |
|
406 | + // Pagination Methods |
|
407 | + public static function getRecordCount( $where = '' ) { |
|
408 | + global $wpdb; |
|
409 | + $table_join = $wpdb->prefix .'frm_items it LEFT OUTER JOIN '. $wpdb->prefix .'frm_forms fr ON it.form_id=fr.id'; |
|
410 | + |
|
411 | + if ( is_numeric($where) ) { |
|
412 | + $table_join = 'frm_items'; |
|
413 | + $where = array( 'form_id' => $where ); |
|
414 | + } |
|
415 | + |
|
416 | + if ( is_array( $where ) ) { |
|
417 | + $count = FrmDb::get_count( $table_join, $where ); |
|
418 | + } else { |
|
419 | + global $wpdb; |
|
420 | + $cache_key = 'count_'. maybe_serialize($where); |
|
421 | + $query = 'SELECT COUNT(*) FROM '. $table_join . FrmAppHelper::prepend_and_or_where(' WHERE ', $where); |
|
422 | + $count = FrmAppHelper::check_cache($cache_key, 'frm_entry', $query, 'get_var'); |
|
423 | + } |
|
424 | + |
|
425 | + return $count; |
|
426 | + } |
|
427 | + |
|
428 | + public static function getPageCount( $p_size, $where = '' ) { |
|
429 | + if ( is_numeric($where) ) { |
|
430 | + return ceil( (int) $where / (int) $p_size ); |
|
431 | + } else { |
|
432 | + return ceil( (int) self::getRecordCount($where) / (int) $p_size ); |
|
433 | + } |
|
434 | + } |
|
435 | + |
|
436 | + /** |
|
437 | + * Prepare the data before inserting it into the database |
|
438 | + * |
|
439 | + * @since 2.0.16 |
|
440 | + * @param array $values |
|
441 | + * @param string $type |
|
442 | + * @return array $new_values |
|
443 | + */ |
|
444 | 444 | private static function before_insert_entry_in_database( &$values, $type ) { |
445 | 445 | |
446 | 446 | self::sanitize_entry_post( $values ); |
@@ -455,13 +455,13 @@ discard block |
||
455 | 455 | } |
456 | 456 | |
457 | 457 | /** |
458 | - * Create an entry and perform after create actions |
|
459 | - * |
|
460 | - * @since 2.0.16 |
|
461 | - * @param array $values |
|
462 | - * @param array $new_values |
|
463 | - * @return boolean|int $entry_id |
|
464 | - */ |
|
458 | + * Create an entry and perform after create actions |
|
459 | + * |
|
460 | + * @since 2.0.16 |
|
461 | + * @param array $values |
|
462 | + * @param array $new_values |
|
463 | + * @return boolean|int $entry_id |
|
464 | + */ |
|
465 | 465 | private static function continue_to_create_entry( $values, $new_values ) { |
466 | 466 | $entry_id = self::insert_entry_into_database( $new_values ); |
467 | 467 | if ( ! $entry_id ) { |
@@ -473,37 +473,37 @@ discard block |
||
473 | 473 | return $entry_id; |
474 | 474 | } |
475 | 475 | |
476 | - /** |
|
477 | - * Sanitize the POST values before we use them |
|
478 | - * |
|
479 | - * @since 2.0 |
|
480 | - * @param array $values The POST values by reference |
|
481 | - */ |
|
482 | - public static function sanitize_entry_post( &$values ) { |
|
483 | - $sanitize_method = array( |
|
484 | - 'form_id' => 'absint', |
|
485 | - 'frm_action' => 'sanitize_title', |
|
486 | - 'form_key' => 'sanitize_title', |
|
487 | - 'item_key' => 'sanitize_title', |
|
488 | - 'item_name' => 'sanitize_text_field', |
|
489 | - 'frm_saving_draft' => 'absint', |
|
490 | - 'is_draft' => 'absint', |
|
491 | - 'post_id' => 'absint', |
|
492 | - 'parent_item_id' => 'absint', |
|
493 | - 'created_at' => 'sanitize_text_field', |
|
494 | - 'updated_at' => 'sanitize_text_field', |
|
495 | - ); |
|
496 | - |
|
497 | - FrmAppHelper::sanitize_request( $sanitize_method, $values ); |
|
498 | - } |
|
499 | - |
|
500 | - /** |
|
501 | - * Prepare the new values for inserting into the database |
|
502 | - * |
|
503 | - * @since 2.0.16 |
|
504 | - * @param array $values |
|
505 | - * @return array $new_values |
|
506 | - */ |
|
476 | + /** |
|
477 | + * Sanitize the POST values before we use them |
|
478 | + * |
|
479 | + * @since 2.0 |
|
480 | + * @param array $values The POST values by reference |
|
481 | + */ |
|
482 | + public static function sanitize_entry_post( &$values ) { |
|
483 | + $sanitize_method = array( |
|
484 | + 'form_id' => 'absint', |
|
485 | + 'frm_action' => 'sanitize_title', |
|
486 | + 'form_key' => 'sanitize_title', |
|
487 | + 'item_key' => 'sanitize_title', |
|
488 | + 'item_name' => 'sanitize_text_field', |
|
489 | + 'frm_saving_draft' => 'absint', |
|
490 | + 'is_draft' => 'absint', |
|
491 | + 'post_id' => 'absint', |
|
492 | + 'parent_item_id' => 'absint', |
|
493 | + 'created_at' => 'sanitize_text_field', |
|
494 | + 'updated_at' => 'sanitize_text_field', |
|
495 | + ); |
|
496 | + |
|
497 | + FrmAppHelper::sanitize_request( $sanitize_method, $values ); |
|
498 | + } |
|
499 | + |
|
500 | + /** |
|
501 | + * Prepare the new values for inserting into the database |
|
502 | + * |
|
503 | + * @since 2.0.16 |
|
504 | + * @param array $values |
|
505 | + * @return array $new_values |
|
506 | + */ |
|
507 | 507 | private static function package_entry_data( &$values ) { |
508 | 508 | global $wpdb; |
509 | 509 | |
@@ -536,67 +536,67 @@ discard block |
||
536 | 536 | } |
537 | 537 | |
538 | 538 | /** |
539 | - * Get the is_draft value for a new entry |
|
540 | - * |
|
541 | - * @since 2.0.16 |
|
542 | - * @param array $values |
|
543 | - * @return int |
|
544 | - */ |
|
539 | + * Get the is_draft value for a new entry |
|
540 | + * |
|
541 | + * @since 2.0.16 |
|
542 | + * @param array $values |
|
543 | + * @return int |
|
544 | + */ |
|
545 | 545 | private static function get_is_draft_value( $values ) { |
546 | 546 | return ( ( isset( $values['frm_saving_draft'] ) && $values['frm_saving_draft'] == 1 ) || ( isset( $values['is_draft'] ) && $values['is_draft'] == 1 ) ) ? 1 : 0; |
547 | 547 | } |
548 | 548 | |
549 | 549 | /** |
550 | - * Get the form_id value for a new entry |
|
551 | - * |
|
552 | - * @since 2.0.16 |
|
553 | - * @param array $values |
|
554 | - * @return int|null |
|
555 | - */ |
|
550 | + * Get the form_id value for a new entry |
|
551 | + * |
|
552 | + * @since 2.0.16 |
|
553 | + * @param array $values |
|
554 | + * @return int|null |
|
555 | + */ |
|
556 | 556 | private static function get_form_id( $values ) { |
557 | 557 | return isset( $values['form_id'] ) ? (int) $values['form_id'] : null; |
558 | 558 | } |
559 | 559 | |
560 | 560 | /** |
561 | - * Get the post_id value for a new entry |
|
562 | - * |
|
563 | - * @since 2.0.16 |
|
564 | - * @param array $values |
|
565 | - * @return int |
|
566 | - */ |
|
561 | + * Get the post_id value for a new entry |
|
562 | + * |
|
563 | + * @since 2.0.16 |
|
564 | + * @param array $values |
|
565 | + * @return int |
|
566 | + */ |
|
567 | 567 | private static function get_post_id( $values ) { |
568 | 568 | return isset( $values['post_id'] ) ? (int) $values['post_id']: 0; |
569 | 569 | } |
570 | 570 | |
571 | 571 | /** |
572 | - * Get the parent_item_id value for a new entry |
|
573 | - * |
|
574 | - * @since 2.0.16 |
|
575 | - * @param array $values |
|
576 | - * @return int |
|
577 | - */ |
|
572 | + * Get the parent_item_id value for a new entry |
|
573 | + * |
|
574 | + * @since 2.0.16 |
|
575 | + * @param array $values |
|
576 | + * @return int |
|
577 | + */ |
|
578 | 578 | private static function get_parent_item_id( $values ) { |
579 | 579 | return isset( $values['parent_item_id'] ) ? (int) $values['parent_item_id']: 0; |
580 | 580 | } |
581 | 581 | |
582 | 582 | /** |
583 | - * Get the created_at value for a new entry |
|
584 | - * |
|
585 | - * @since 2.0.16 |
|
586 | - * @param array $values |
|
587 | - * @return string |
|
588 | - */ |
|
583 | + * Get the created_at value for a new entry |
|
584 | + * |
|
585 | + * @since 2.0.16 |
|
586 | + * @param array $values |
|
587 | + * @return string |
|
588 | + */ |
|
589 | 589 | private static function get_created_at( $values ) { |
590 | 590 | return isset( $values['created_at'] ) ? $values['created_at']: current_time('mysql', 1); |
591 | 591 | } |
592 | 592 | |
593 | 593 | /** |
594 | - * Get the updated_at value for a new entry |
|
595 | - * |
|
596 | - * @since 2.0.16 |
|
597 | - * @param array $values |
|
598 | - * @return string |
|
599 | - */ |
|
594 | + * Get the updated_at value for a new entry |
|
595 | + * |
|
596 | + * @since 2.0.16 |
|
597 | + * @param array $values |
|
598 | + * @return string |
|
599 | + */ |
|
600 | 600 | private static function get_updated_at( $values ) { |
601 | 601 | if ( isset( $values['updated_at'] ) ) { |
602 | 602 | $updated_at = $values['updated_at']; |
@@ -608,12 +608,12 @@ discard block |
||
608 | 608 | } |
609 | 609 | |
610 | 610 | /** |
611 | - * Get the description value for a new entry |
|
612 | - * |
|
613 | - * @since 2.0.16 |
|
614 | - * @param array $values |
|
615 | - * @return string |
|
616 | - */ |
|
611 | + * Get the description value for a new entry |
|
612 | + * |
|
613 | + * @since 2.0.16 |
|
614 | + * @param array $values |
|
615 | + * @return string |
|
616 | + */ |
|
617 | 617 | private static function get_entry_description( $values ) { |
618 | 618 | if ( isset( $values['description'] ) && ! empty( $values['description'] ) ) { |
619 | 619 | $description = maybe_serialize( $values['description'] ); |
@@ -628,12 +628,12 @@ discard block |
||
628 | 628 | } |
629 | 629 | |
630 | 630 | /** |
631 | - * Get the user_id value for a new entry |
|
632 | - * |
|
633 | - * @since 2.0.16 |
|
634 | - * @param array $values |
|
635 | - * @return int |
|
636 | - */ |
|
631 | + * Get the user_id value for a new entry |
|
632 | + * |
|
633 | + * @since 2.0.16 |
|
634 | + * @param array $values |
|
635 | + * @return int |
|
636 | + */ |
|
637 | 637 | private static function get_entry_user_id( $values ) { |
638 | 638 | if ( isset( $values['frm_user_id'] ) && ( is_numeric( $values['frm_user_id'] ) || FrmAppHelper::is_admin() ) ) { |
639 | 639 | $user_id = $values['frm_user_id']; |
@@ -646,12 +646,12 @@ discard block |
||
646 | 646 | } |
647 | 647 | |
648 | 648 | /** |
649 | - * Insert new entry into the database |
|
650 | - * |
|
651 | - * @since 2.0.16 |
|
652 | - * @param array $new_values |
|
653 | - * @return int | boolean $entry_id |
|
654 | - */ |
|
649 | + * Insert new entry into the database |
|
650 | + * |
|
651 | + * @since 2.0.16 |
|
652 | + * @param array $new_values |
|
653 | + * @return int | boolean $entry_id |
|
654 | + */ |
|
655 | 655 | private static function insert_entry_into_database( $new_values ) { |
656 | 656 | global $wpdb; |
657 | 657 | |
@@ -667,11 +667,11 @@ discard block |
||
667 | 667 | } |
668 | 668 | |
669 | 669 | /** |
670 | - * Add the new entry to global $frm_vars |
|
671 | - * |
|
672 | - * @since 2.0.16 |
|
673 | - * @param int $entry_id |
|
674 | - */ |
|
670 | + * Add the new entry to global $frm_vars |
|
671 | + * |
|
672 | + * @since 2.0.16 |
|
673 | + * @param int $entry_id |
|
674 | + */ |
|
675 | 675 | private static function add_new_entry_to_frm_vars( $entry_id ) { |
676 | 676 | global $frm_vars; |
677 | 677 | |
@@ -683,12 +683,12 @@ discard block |
||
683 | 683 | } |
684 | 684 | |
685 | 685 | /** |
686 | - * Add entry metas, if there are any |
|
687 | - * |
|
688 | - * @since 2.0.16 |
|
689 | - * @param array $values |
|
690 | - * @param int $entry_id |
|
691 | - */ |
|
686 | + * Add entry metas, if there are any |
|
687 | + * |
|
688 | + * @since 2.0.16 |
|
689 | + * @param array $values |
|
690 | + * @param int $entry_id |
|
691 | + */ |
|
692 | 692 | private static function maybe_add_entry_metas( $values, $entry_id ) { |
693 | 693 | if ( isset($values['item_meta']) ) { |
694 | 694 | FrmEntryMeta::update_entry_metas( $entry_id, $values['item_meta'] ); |
@@ -696,12 +696,12 @@ discard block |
||
696 | 696 | } |
697 | 697 | |
698 | 698 | /** |
699 | - * Trigger frm_after_create_entry hooks |
|
700 | - * |
|
701 | - * @since 2.0.16 |
|
702 | - * @param int $entry_id |
|
703 | - * @param array $new_values |
|
704 | - */ |
|
699 | + * Trigger frm_after_create_entry hooks |
|
700 | + * |
|
701 | + * @since 2.0.16 |
|
702 | + * @param int $entry_id |
|
703 | + * @param array $new_values |
|
704 | + */ |
|
705 | 705 | private static function after_entry_created_actions( $entry_id, $values, $new_values ) { |
706 | 706 | // this is a child entry |
707 | 707 | $is_child = isset( $values['parent_form_id'] ) && isset( $values['parent_nonce'] ) && ! empty( $values['parent_form_id'] ) && wp_verify_nonce( $values['parent_nonce'], 'parent' ); |
@@ -711,13 +711,13 @@ discard block |
||
711 | 711 | } |
712 | 712 | |
713 | 713 | /** |
714 | - * Actions to perform immediately after an entry is inserted in the frm_items database |
|
715 | - * |
|
716 | - * @since 2.0.16 |
|
717 | - * @param array $values |
|
718 | - * @param array $new_values |
|
719 | - * @param int $entry_id |
|
720 | - */ |
|
714 | + * Actions to perform immediately after an entry is inserted in the frm_items database |
|
715 | + * |
|
716 | + * @since 2.0.16 |
|
717 | + * @param array $values |
|
718 | + * @param array $new_values |
|
719 | + * @param int $entry_id |
|
720 | + */ |
|
721 | 721 | private static function after_insert_entry_in_database( $values, $new_values, $entry_id ) { |
722 | 722 | |
723 | 723 | self::add_new_entry_to_frm_vars( $entry_id ); |
@@ -730,14 +730,14 @@ discard block |
||
730 | 730 | } |
731 | 731 | |
732 | 732 | /** |
733 | - * Perform some actions right before updating an entry |
|
734 | - * |
|
735 | - * @since 2.0.16 |
|
736 | - * @param int $id |
|
737 | - * @param array $values |
|
738 | - * @param string $update_type |
|
739 | - * @return boolean $update |
|
740 | - */ |
|
733 | + * Perform some actions right before updating an entry |
|
734 | + * |
|
735 | + * @since 2.0.16 |
|
736 | + * @param int $id |
|
737 | + * @param array $values |
|
738 | + * @param string $update_type |
|
739 | + * @return boolean $update |
|
740 | + */ |
|
741 | 741 | private static function before_update_entry( $id, &$values, $update_type ) { |
742 | 742 | $update = true; |
743 | 743 | |
@@ -755,13 +755,13 @@ discard block |
||
755 | 755 | } |
756 | 756 | |
757 | 757 | /** |
758 | - * Package the entry data for updating |
|
759 | - * |
|
760 | - * @since 2.0.16 |
|
761 | - * @param int $id |
|
762 | - * @param array $values |
|
763 | - * @return array $new_values |
|
764 | - */ |
|
758 | + * Package the entry data for updating |
|
759 | + * |
|
760 | + * @since 2.0.16 |
|
761 | + * @param int $id |
|
762 | + * @param array $values |
|
763 | + * @return array $new_values |
|
764 | + */ |
|
765 | 765 | private static function package_entry_to_update( $id, $values ) { |
766 | 766 | global $wpdb; |
767 | 767 | |
@@ -795,14 +795,14 @@ discard block |
||
795 | 795 | } |
796 | 796 | |
797 | 797 | /** |
798 | - * Perform some actions right after updating an entry |
|
799 | - * |
|
800 | - * @since 2.0.16 |
|
801 | - * @param boolean|int $query_results |
|
802 | - * @param int $id |
|
803 | - * @param array $values |
|
804 | - * @param array $new_values |
|
805 | - */ |
|
798 | + * Perform some actions right after updating an entry |
|
799 | + * |
|
800 | + * @since 2.0.16 |
|
801 | + * @param boolean|int $query_results |
|
802 | + * @param int $id |
|
803 | + * @param array $values |
|
804 | + * @param array $new_values |
|
805 | + */ |
|
806 | 806 | private static function after_update_entry( $query_results, $id, $values, $new_values ) { |
807 | 807 | if ( $query_results ) { |
808 | 808 | self::clear_cache(); |
@@ -824,13 +824,13 @@ discard block |
||
824 | 824 | } |
825 | 825 | |
826 | 826 | /** |
827 | - * Create entry from an XML import |
|
828 | - * Certain actions aren't necessary when importing (like saving sub entries, checking for duplicates, etc.) |
|
829 | - * |
|
830 | - * @since 2.0.16 |
|
831 | - * @param array $values |
|
832 | - * @return int | boolean $entry_id |
|
833 | - */ |
|
827 | + * Create entry from an XML import |
|
828 | + * Certain actions aren't necessary when importing (like saving sub entries, checking for duplicates, etc.) |
|
829 | + * |
|
830 | + * @since 2.0.16 |
|
831 | + * @param array $values |
|
832 | + * @return int | boolean $entry_id |
|
833 | + */ |
|
834 | 834 | public static function create_entry_from_xml( $values ){ |
835 | 835 | $entry_id = self::create_entry( $values, 'xml' ); |
836 | 836 | |
@@ -838,28 +838,28 @@ discard block |
||
838 | 838 | } |
839 | 839 | |
840 | 840 | /** |
841 | - * Update entry from an XML import |
|
842 | - * Certain actions aren't necessary when importing (like saving sub entries and modifying other vals) |
|
843 | - * |
|
844 | - * @since 2.0.16 |
|
845 | - * @param int $id |
|
846 | - * @param array $values |
|
847 | - * @return int | boolean $updated |
|
848 | - */ |
|
841 | + * Update entry from an XML import |
|
842 | + * Certain actions aren't necessary when importing (like saving sub entries and modifying other vals) |
|
843 | + * |
|
844 | + * @since 2.0.16 |
|
845 | + * @param int $id |
|
846 | + * @param array $values |
|
847 | + * @return int | boolean $updated |
|
848 | + */ |
|
849 | 849 | public static function update_entry_from_xml( $id, $values ) { |
850 | 850 | $updated = self::update_entry( $id, $values, 'xml' ); |
851 | 851 | |
852 | 852 | return $updated; |
853 | 853 | } |
854 | 854 | |
855 | - /** |
|
856 | - * @param string $key |
|
857 | - * @return int entry_id |
|
858 | - */ |
|
855 | + /** |
|
856 | + * @param string $key |
|
857 | + * @return int entry_id |
|
858 | + */ |
|
859 | 859 | public static function get_id_by_key( $key ) { |
860 | - $entry_id = FrmDb::get_var( 'frm_items', array( 'item_key' => sanitize_title( $key ) ) ); |
|
861 | - return $entry_id; |
|
862 | - } |
|
860 | + $entry_id = FrmDb::get_var( 'frm_items', array( 'item_key' => sanitize_title( $key ) ) ); |
|
861 | + return $entry_id; |
|
862 | + } |
|
863 | 863 | |
864 | 864 | public static function validate( $values, $exclude = false ) { |
865 | 865 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmEntryValidate::validate' ); |