@@ -1,17 +1,17 @@ |
||
| 1 | 1 | <div class="field-group clearfix frm-half frm-first-row"> |
| 2 | 2 | <label><?php _e( 'Size', 'formidable' ) ?></label> |
| 3 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('title_size') ) ?>" id="frm_title_size" value="<?php echo esc_attr( $style->post_content['title_size'] ) ?>" /> |
|
| 3 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_size' ) ) ?>" id="frm_title_size" value="<?php echo esc_attr( $style->post_content['title_size'] ) ?>" /> |
|
| 4 | 4 | </div> |
| 5 | 5 | |
| 6 | 6 | <div class="field-group clearfix frm-half frm-first-row"> |
| 7 | 7 | <label><?php _e( 'Color', 'formidable' ) ?></label> |
| 8 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('title_color') ) ?>" id="frm_title_color" class="hex" value="<?php echo esc_attr( $style->post_content['title_color'] ) ?>" /> |
|
| 8 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_color' ) ) ?>" id="frm_title_color" class="hex" value="<?php echo esc_attr( $style->post_content['title_color'] ) ?>" /> |
|
| 9 | 9 | </div> |
| 10 | 10 | <div class="field-group clearfix frm-half"> |
| 11 | 11 | <label><?php _e( 'Margin Top', 'formidable' ) ?></label> |
| 12 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('title_margin_top') ) ?>" id="frm_title_margin_top" value="<?php echo esc_attr( $style->post_content['title_margin_top'] ) ?>" size="4" /> |
|
| 12 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_margin_top' ) ) ?>" id="frm_title_margin_top" value="<?php echo esc_attr( $style->post_content['title_margin_top'] ) ?>" size="4" /> |
|
| 13 | 13 | </div> |
| 14 | 14 | <div class="field-group clearfix frm-half"> |
| 15 | 15 | <label><?php _e( 'Margin Bottom', 'formidable' ) ?></label> |
| 16 | - <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name('title_margin_bottom') ) ?>" id="frm_title_margin_bottom" value="<?php echo esc_attr( $style->post_content['title_margin_bottom'] ) ?>" size="4" /> |
|
| 16 | + <input type="text" name="<?php echo esc_attr( $frm_style->get_field_name( 'title_margin_bottom' ) ) ?>" id="frm_title_margin_bottom" value="<?php echo esc_attr( $style->post_content['title_margin_bottom'] ) ?>" size="4" /> |
|
| 17 | 17 | </div> |
@@ -181,13 +181,13 @@ |
||
| 181 | 181 | ), |
| 182 | 182 | ); |
| 183 | 183 | $random = rand( 0, count( $tips ) - 1 ); |
| 184 | - $tip = $tips[ $random ]; |
|
| 184 | + $tip = $tips[$random]; |
|
| 185 | 185 | $tip['num'] = $random; |
| 186 | 186 | return $tip; |
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | public static function get_random_tip( $tips ) { |
| 190 | 190 | $random = rand( 0, count( $tips ) - 1 ); |
| 191 | - return $tips[ $random ]; |
|
| 191 | + return $tips[$random]; |
|
| 192 | 192 | } |
| 193 | 193 | } |
@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 8 | 8 | $menu_label .= ' (Lite)'; |
| 9 | 9 | } |
| 10 | - add_submenu_page('formidable', 'Formidable | ' . $menu_label, $menu_label, 'frm_view_forms', 'formidable', 'FrmFormsController::route' ); |
|
| 10 | + add_submenu_page( 'formidable', 'Formidable | ' . $menu_label, $menu_label, 'frm_view_forms', 'formidable', 'FrmFormsController::route' ); |
|
| 11 | 11 | |
| 12 | 12 | self::maybe_load_listing_hooks(); |
| 13 | 13 | } |
@@ -18,14 +18,14 @@ discard block |
||
| 18 | 18 | return; |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - add_filter('get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' ); |
|
| 21 | + add_filter( 'get_user_option_managetoplevel_page_formidablecolumnshidden', 'FrmFormsController::hidden_columns' ); |
|
| 22 | 22 | |
| 23 | - add_filter('manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 ); |
|
| 24 | - add_filter('manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' ); |
|
| 23 | + add_filter( 'manage_toplevel_page_formidable_columns', 'FrmFormsController::get_columns', 0 ); |
|
| 24 | + add_filter( 'manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' ); |
|
| 25 | 25 | } |
| 26 | 26 | |
| 27 | 27 | public static function head() { |
| 28 | - wp_enqueue_script('formidable-editinplace'); |
|
| 28 | + wp_enqueue_script( 'formidable-editinplace' ); |
|
| 29 | 29 | |
| 30 | 30 | if ( wp_is_mobile() ) { |
| 31 | 31 | wp_enqueue_script( 'jquery-touch-punch' ); |
@@ -33,39 +33,39 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | public static function register_widgets() { |
| 36 | - require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php'); |
|
| 37 | - register_widget('FrmShowForm'); |
|
| 36 | + require_once( FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php' ); |
|
| 37 | + register_widget( 'FrmShowForm' ); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public static function list_form() { |
| 41 | - FrmAppHelper::permission_check('frm_view_forms'); |
|
| 41 | + FrmAppHelper::permission_check( 'frm_view_forms' ); |
|
| 42 | 42 | |
| 43 | 43 | $params = FrmForm::list_page_params(); |
| 44 | - $errors = self::process_bulk_form_actions( array()); |
|
| 45 | - $errors = apply_filters('frm_admin_list_form_action', $errors); |
|
| 44 | + $errors = self::process_bulk_form_actions( array() ); |
|
| 45 | + $errors = apply_filters( 'frm_admin_list_form_action', $errors ); |
|
| 46 | 46 | |
| 47 | 47 | return self::display_forms_list( $params, '', $errors ); |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | public static function new_form( $values = array() ) { |
| 51 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 51 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 52 | 52 | |
| 53 | 53 | global $frm_vars; |
| 54 | 54 | |
| 55 | - $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 56 | - $action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ]; |
|
| 55 | + $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
| 56 | + $action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[$action]; |
|
| 57 | 57 | |
| 58 | 58 | if ( $action == 'create' ) { |
| 59 | - return self::create($values); |
|
| 59 | + return self::create( $values ); |
|
| 60 | 60 | } else if ( $action == 'new' ) { |
| 61 | 61 | $frm_field_selection = FrmField::field_selection(); |
| 62 | - $values = FrmFormsHelper::setup_new_vars($values); |
|
| 62 | + $values = FrmFormsHelper::setup_new_vars( $values ); |
|
| 63 | 63 | $id = FrmForm::create( $values ); |
| 64 | - $form = FrmForm::getOne($id); |
|
| 64 | + $form = FrmForm::getOne( $id ); |
|
| 65 | 65 | |
| 66 | 66 | // add default email notification |
| 67 | 67 | $action_control = FrmFormActionsController::get_form_actions( 'email' ); |
| 68 | - $action_control->create($form->id); |
|
| 68 | + $action_control->create( $form->id ); |
|
| 69 | 69 | |
| 70 | 70 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 71 | 71 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | public static function create( $values = array() ) { |
| 78 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 78 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 79 | 79 | |
| 80 | 80 | global $frm_vars; |
| 81 | 81 | if ( empty( $values ) ) { |
@@ -87,22 +87,22 @@ discard block |
||
| 87 | 87 | $values = FrmProEntry::mod_other_vals( $values, 'back' ); |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $id = isset($values['id']) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
|
| 90 | + $id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
|
| 91 | 91 | |
| 92 | 92 | if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) { |
| 93 | 93 | $frm_settings = FrmAppHelper::get_settings(); |
| 94 | 94 | $errors = array( 'form' => $frm_settings->admin_permission ); |
| 95 | 95 | } else { |
| 96 | - $errors = FrmForm::validate($values); |
|
| 96 | + $errors = FrmForm::validate( $values ); |
|
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if ( count($errors) > 0 ) { |
|
| 99 | + if ( count( $errors ) > 0 ) { |
|
| 100 | 100 | $hide_preview = true; |
| 101 | 101 | $frm_field_selection = FrmField::field_selection(); |
| 102 | 102 | $form = FrmForm::getOne( $id ); |
| 103 | - $fields = FrmField::get_all_for_form($id); |
|
| 103 | + $fields = FrmField::get_all_for_form( $id ); |
|
| 104 | 104 | |
| 105 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 105 | + $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true ); |
|
| 106 | 106 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 107 | 107 | |
| 108 | 108 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' ); |
@@ -114,32 +114,32 @@ discard block |
||
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | public static function edit( $values = false ) { |
| 117 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 117 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 118 | 118 | |
| 119 | 119 | $id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 120 | - return self::get_edit_vars($id); |
|
| 120 | + return self::get_edit_vars( $id ); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | public static function settings( $id = false, $message = '' ) { |
| 124 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 124 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 125 | 125 | |
| 126 | - if ( ! $id || ! is_numeric($id) ) { |
|
| 126 | + if ( ! $id || ! is_numeric( $id ) ) { |
|
| 127 | 127 | $id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 128 | 128 | } |
| 129 | 129 | return self::get_settings_vars( $id, array(), $message ); |
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | public static function update_settings() { |
| 133 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 133 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 134 | 134 | |
| 135 | 135 | $id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 136 | 136 | |
| 137 | - $errors = FrmForm::validate($_POST); |
|
| 138 | - if ( count($errors) > 0 ) { |
|
| 139 | - return self::get_settings_vars($id, $errors); |
|
| 137 | + $errors = FrmForm::validate( $_POST ); |
|
| 138 | + if ( count( $errors ) > 0 ) { |
|
| 139 | + return self::get_settings_vars( $id, $errors ); |
|
| 140 | 140 | } |
| 141 | 141 | |
| 142 | - do_action('frm_before_update_form_settings', $id); |
|
| 142 | + do_action( 'frm_before_update_form_settings', $id ); |
|
| 143 | 143 | |
| 144 | 144 | FrmForm::update( $id, $_POST ); |
| 145 | 145 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | |
| 162 | 162 | private static function edit_in_place_value( $field ) { |
| 163 | 163 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 164 | - FrmAppHelper::permission_check('frm_edit_forms', 'hide'); |
|
| 164 | + FrmAppHelper::permission_check( 'frm_edit_forms', 'hide' ); |
|
| 165 | 165 | |
| 166 | 166 | $form_id = FrmAppHelper::get_post_param( 'form_id', '', 'absint' ); |
| 167 | 167 | $value = FrmAppHelper::get_post_param( 'update_value', '', 'wp_filter_post_kses' ); |
@@ -219,7 +219,7 @@ discard block |
||
| 219 | 219 | * @since 2.0 |
| 220 | 220 | */ |
| 221 | 221 | public static function _create_from_template() { |
| 222 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 222 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 223 | 223 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 224 | 224 | |
| 225 | 225 | $current_form = FrmAppHelper::get_param( 'this_form', '', 'get', 'absint' ); |
@@ -234,15 +234,15 @@ discard block |
||
| 234 | 234 | } |
| 235 | 235 | |
| 236 | 236 | public static function duplicate() { |
| 237 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 237 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 238 | 238 | |
| 239 | 239 | $params = FrmForm::list_page_params(); |
| 240 | 240 | $form = FrmForm::duplicate( $params['id'], $params['template'], true ); |
| 241 | - $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' ); |
|
| 241 | + $message = ( $params['template'] ) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' ); |
|
| 242 | 242 | if ( $form ) { |
| 243 | 243 | return self::get_edit_vars( $form, array(), $message, true ); |
| 244 | 244 | } else { |
| 245 | - return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' )); |
|
| 245 | + return self::display_forms_list( $params, __( 'There was a problem creating the new template.', 'formidable' ) ); |
|
| 246 | 246 | } |
| 247 | 247 | } |
| 248 | 248 | |
@@ -304,11 +304,11 @@ discard block |
||
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | public static function bulk_untrash( $ids ) { |
| 307 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 307 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 308 | 308 | |
| 309 | 309 | $count = FrmForm::set_status( $ids, 'published' ); |
| 310 | 310 | |
| 311 | - $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 ); |
|
| 311 | + $message = sprintf( _n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 ); |
|
| 312 | 312 | return $message; |
| 313 | 313 | } |
| 314 | 314 | |
@@ -327,11 +327,11 @@ discard block |
||
| 327 | 327 | 'trash' => array( 'permission' => 'frm_delete_forms', 'new_status' => 'trash' ), |
| 328 | 328 | ); |
| 329 | 329 | |
| 330 | - if ( ! isset( $available_status[ $status ] ) ) { |
|
| 330 | + if ( ! isset( $available_status[$status] ) ) { |
|
| 331 | 331 | return; |
| 332 | 332 | } |
| 333 | 333 | |
| 334 | - FrmAppHelper::permission_check( $available_status[ $status ]['permission'] ); |
|
| 334 | + FrmAppHelper::permission_check( $available_status[$status]['permission'] ); |
|
| 335 | 335 | |
| 336 | 336 | $params = FrmForm::list_page_params(); |
| 337 | 337 | |
@@ -339,25 +339,25 @@ discard block |
||
| 339 | 339 | check_admin_referer( $status . '_form_' . $params['id'] ); |
| 340 | 340 | |
| 341 | 341 | $count = 0; |
| 342 | - if ( FrmForm::set_status( $params['id'], $available_status[ $status ]['new_status'] ) ) { |
|
| 343 | - $count++; |
|
| 342 | + if ( FrmForm::set_status( $params['id'], $available_status[$status]['new_status'] ) ) { |
|
| 343 | + $count ++; |
|
| 344 | 344 | } |
| 345 | 345 | |
| 346 | - $available_status['untrash']['message'] = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count ); |
|
| 346 | + $available_status['untrash']['message'] = sprintf( _n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), $count ); |
|
| 347 | 347 | $available_status['trash']['message'] = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=untrash&form_type=' . ( isset( $_REQUEST['form_type'] ) ? sanitize_title( $_REQUEST['form_type'] ) : '' ) . '&id=' . $params['id'], 'untrash_form_' . $params['id'] ) ) . '">', '</a>' ); |
| 348 | 348 | |
| 349 | - $message = $available_status[ $status ]['message']; |
|
| 349 | + $message = $available_status[$status]['message']; |
|
| 350 | 350 | |
| 351 | 351 | self::display_forms_list( $params, $message ); |
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | public static function bulk_trash( $ids ) { |
| 355 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 355 | + FrmAppHelper::permission_check( 'frm_delete_forms' ); |
|
| 356 | 356 | |
| 357 | 357 | $count = 0; |
| 358 | 358 | foreach ( $ids as $id ) { |
| 359 | 359 | if ( FrmForm::trash( $id ) ) { |
| 360 | - $count++; |
|
| 360 | + $count ++; |
|
| 361 | 361 | } |
| 362 | 362 | } |
| 363 | 363 | |
@@ -368,49 +368,49 @@ discard block |
||
| 368 | 368 | } |
| 369 | 369 | |
| 370 | 370 | public static function destroy() { |
| 371 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 371 | + FrmAppHelper::permission_check( 'frm_delete_forms' ); |
|
| 372 | 372 | |
| 373 | 373 | $params = FrmForm::list_page_params(); |
| 374 | 374 | |
| 375 | 375 | //check nonce url |
| 376 | - check_admin_referer('destroy_form_' . $params['id']); |
|
| 376 | + check_admin_referer( 'destroy_form_' . $params['id'] ); |
|
| 377 | 377 | |
| 378 | 378 | $count = 0; |
| 379 | 379 | if ( FrmForm::destroy( $params['id'] ) ) { |
| 380 | - $count++; |
|
| 380 | + $count ++; |
|
| 381 | 381 | } |
| 382 | 382 | |
| 383 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 383 | + $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count ); |
|
| 384 | 384 | |
| 385 | 385 | self::display_forms_list( $params, $message ); |
| 386 | 386 | } |
| 387 | 387 | |
| 388 | 388 | public static function bulk_destroy( $ids ) { |
| 389 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 389 | + FrmAppHelper::permission_check( 'frm_delete_forms' ); |
|
| 390 | 390 | |
| 391 | 391 | $count = 0; |
| 392 | 392 | foreach ( $ids as $id ) { |
| 393 | 393 | $d = FrmForm::destroy( $id ); |
| 394 | 394 | if ( $d ) { |
| 395 | - $count++; |
|
| 395 | + $count ++; |
|
| 396 | 396 | } |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 399 | + $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count ); |
|
| 400 | 400 | |
| 401 | 401 | return $message; |
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | private static function delete_all() { |
| 405 | 405 | //check nonce url |
| 406 | - $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable'); |
|
| 406 | + $permission_error = FrmAppHelper::permission_nonce_error( 'frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable' ); |
|
| 407 | 407 | if ( $permission_error !== false ) { |
| 408 | 408 | self::display_forms_list( array(), '', array( $permission_error ) ); |
| 409 | 409 | return; |
| 410 | 410 | } |
| 411 | 411 | |
| 412 | 412 | $count = FrmForm::scheduled_delete( time() ); |
| 413 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 413 | + $message = sprintf( _n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count ); |
|
| 414 | 414 | |
| 415 | 415 | self::display_forms_list( array(), $message ); |
| 416 | 416 | } |
@@ -427,7 +427,7 @@ discard block |
||
| 427 | 427 | * @since 2.0.15 |
| 428 | 428 | */ |
| 429 | 429 | public static function insert_form_button() { |
| 430 | - if ( current_user_can('frm_view_forms') ) { |
|
| 430 | + if ( current_user_can( 'frm_view_forms' ) ) { |
|
| 431 | 431 | $menu_name = FrmAppHelper::get_menu_name(); |
| 432 | 432 | $content = '<a href="#TB_inline?width=50&height=50&inlineId=frm_insert_form" class="thickbox button add_media frm_insert_form" title="' . esc_attr__( 'Add forms and content', 'formidable' ) . '"> |
| 433 | 433 | <span class="frm-buttons-icon wp-media-buttons-icon"></span> ' . |
@@ -448,17 +448,17 @@ discard block |
||
| 448 | 448 | 'formidable' => array( 'name' => __( 'Form', 'formidable' ), 'label' => __( 'Insert a Form', 'formidable' ) ), |
| 449 | 449 | ); |
| 450 | 450 | |
| 451 | - $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes); |
|
| 451 | + $shortcodes = apply_filters( 'frm_popup_shortcodes', $shortcodes ); |
|
| 452 | 452 | |
| 453 | 453 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/insert_form_popup.php' ); |
| 454 | 454 | } |
| 455 | 455 | |
| 456 | 456 | public static function get_shortcode_opts() { |
| 457 | - FrmAppHelper::permission_check('frm_view_forms'); |
|
| 457 | + FrmAppHelper::permission_check( 'frm_view_forms' ); |
|
| 458 | 458 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 459 | 459 | |
| 460 | 460 | $shortcode = FrmAppHelper::get_post_param( 'shortcode', '', 'sanitize_text_field' ); |
| 461 | - if ( empty($shortcode) ) { |
|
| 461 | + if ( empty( $shortcode ) ) { |
|
| 462 | 462 | wp_die(); |
| 463 | 463 | } |
| 464 | 464 | |
@@ -478,7 +478,7 @@ discard block |
||
| 478 | 478 | ); |
| 479 | 479 | break; |
| 480 | 480 | } |
| 481 | - $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode); |
|
| 481 | + $opts = apply_filters( 'frm_sc_popup_opts', $opts, $shortcode ); |
|
| 482 | 482 | |
| 483 | 483 | if ( isset( $opts['form_id'] ) && is_string( $opts['form_id'] ) ) { |
| 484 | 484 | // allow other shortcodes to use the required form id option |
@@ -595,11 +595,11 @@ discard block |
||
| 595 | 595 | } |
| 596 | 596 | |
| 597 | 597 | if ( $form->parent_form_id ) { |
| 598 | - wp_die( sprintf( __( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form->parent_form_id ) ) . '">', '</a>' )); |
|
| 598 | + wp_die( sprintf( __( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form->parent_form_id ) ) . '">', '</a>' ) ); |
|
| 599 | 599 | } |
| 600 | 600 | |
| 601 | 601 | $frm_field_selection = FrmField::field_selection(); |
| 602 | - $fields = FrmField::get_all_for_form($form->id); |
|
| 602 | + $fields = FrmField::get_all_for_form( $form->id ); |
|
| 603 | 603 | |
| 604 | 604 | // Automatically add end section fields if they don't exist (2.0 migration) |
| 605 | 605 | $reset_fields = false; |
@@ -609,9 +609,9 @@ discard block |
||
| 609 | 609 | $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' ); |
| 610 | 610 | } |
| 611 | 611 | |
| 612 | - unset($end_section_values, $last_order, $open, $reset_fields); |
|
| 612 | + unset( $end_section_values, $last_order, $open, $reset_fields ); |
|
| 613 | 613 | |
| 614 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 614 | + $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true ); |
|
| 615 | 615 | |
| 616 | 616 | $edit_message = __( 'Form was Successfully Updated', 'formidable' ); |
| 617 | 617 | if ( $form->is_template && $message == $edit_message ) { |
@@ -621,8 +621,8 @@ discard block |
||
| 621 | 621 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 622 | 622 | |
| 623 | 623 | if ( $form->default_template ) { |
| 624 | - wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 625 | - } else if ( defined('DOING_AJAX') ) { |
|
| 624 | + wp_die( __( 'That template cannot be edited', 'formidable' ) ); |
|
| 625 | + } else if ( defined( 'DOING_AJAX' ) ) { |
|
| 626 | 626 | wp_die(); |
| 627 | 627 | } else if ( $create_link ) { |
| 628 | 628 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' ); |
@@ -638,28 +638,28 @@ discard block |
||
| 638 | 638 | |
| 639 | 639 | $form = FrmForm::getOne( $id ); |
| 640 | 640 | |
| 641 | - $fields = FrmField::get_all_for_form($id); |
|
| 642 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 641 | + $fields = FrmField::get_all_for_form( $id ); |
|
| 642 | + $values = FrmAppHelper::setup_edit_vars( $form, 'forms', $fields, true ); |
|
| 643 | 643 | |
| 644 | - if ( isset($values['default_template']) && $values['default_template'] ) { |
|
| 645 | - wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 644 | + if ( isset( $values['default_template'] ) && $values['default_template'] ) { |
|
| 645 | + wp_die( __( 'That template cannot be edited', 'formidable' ) ); |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | $action_controls = FrmFormActionsController::get_form_actions(); |
| 649 | 649 | |
| 650 | - $sections = apply_filters('frm_add_form_settings_section', array(), $values); |
|
| 650 | + $sections = apply_filters( 'frm_add_form_settings_section', array(), $values ); |
|
| 651 | 651 | $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"'; |
| 652 | 652 | |
| 653 | - $styles = apply_filters('frm_get_style_opts', array()); |
|
| 653 | + $styles = apply_filters( 'frm_get_style_opts', array() ); |
|
| 654 | 654 | |
| 655 | 655 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/settings.php' ); |
| 656 | 656 | } |
| 657 | 657 | |
| 658 | 658 | public static function mb_tags_box( $form_id, $class = '' ) { |
| 659 | - $fields = FrmField::get_all_for_form($form_id, '', 'include'); |
|
| 659 | + $fields = FrmField::get_all_for_form( $form_id, '', 'include' ); |
|
| 660 | 660 | $linked_forms = array(); |
| 661 | 661 | $col = 'one'; |
| 662 | - $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false; |
|
| 662 | + $settings_tab = FrmAppHelper::is_admin_page( 'formidable' ) ? true : false; |
|
| 663 | 663 | |
| 664 | 664 | $cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() ); |
| 665 | 665 | $adv_shortcodes = self::get_advanced_shortcodes(); |
@@ -737,13 +737,13 @@ discard block |
||
| 737 | 737 | |
| 738 | 738 | // Insert the form class setting into the form |
| 739 | 739 | public static function form_classes( $form ) { |
| 740 | - if ( isset($form->options['form_class']) ) { |
|
| 740 | + if ( isset( $form->options['form_class'] ) ) { |
|
| 741 | 741 | echo esc_attr( sanitize_text_field( $form->options['form_class'] ) ); |
| 742 | 742 | } |
| 743 | 743 | } |
| 744 | 744 | |
| 745 | 745 | public static function get_email_html() { |
| 746 | - FrmAppHelper::permission_check('frm_view_forms'); |
|
| 746 | + FrmAppHelper::permission_check( 'frm_view_forms' ); |
|
| 747 | 747 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 748 | 748 | echo FrmEntryFormat::show_entry( array( |
| 749 | 749 | 'form_id' => FrmAppHelper::get_post_param( 'form_id', '', 'absint' ), |
@@ -840,11 +840,11 @@ discard block |
||
| 840 | 840 | public static function add_default_templates( $path, $default = true, $template = true ) { |
| 841 | 841 | _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' ); |
| 842 | 842 | |
| 843 | - $path = untrailingslashit(trim($path)); |
|
| 843 | + $path = untrailingslashit( trim( $path ) ); |
|
| 844 | 844 | $templates = glob( $path . '/*.php' ); |
| 845 | 845 | |
| 846 | - for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) { |
|
| 847 | - $filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[ $i ] ) ); |
|
| 846 | + for ( $i = count( $templates ) - 1; $i >= 0; $i -- ) { |
|
| 847 | + $filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[$i] ) ); |
|
| 848 | 848 | $template_query = array( 'form_key' => $filename ); |
| 849 | 849 | if ( $template ) { |
| 850 | 850 | $template_query['is_template'] = 1; |
@@ -862,12 +862,12 @@ discard block |
||
| 862 | 862 | $values['default_template'] = 1; |
| 863 | 863 | } |
| 864 | 864 | |
| 865 | - include( $templates[ $i ] ); |
|
| 865 | + include( $templates[$i] ); |
|
| 866 | 866 | |
| 867 | 867 | //get updated form |
| 868 | - if ( isset($form) && ! empty($form) ) { |
|
| 868 | + if ( isset( $form ) && ! empty( $form ) ) { |
|
| 869 | 869 | $old_id = $form->id; |
| 870 | - $form = FrmForm::getOne($form->id); |
|
| 870 | + $form = FrmForm::getOne( $form->id ); |
|
| 871 | 871 | } else { |
| 872 | 872 | $old_id = false; |
| 873 | 873 | $form = FrmForm::getAll( $template_query, '', 1 ); |
@@ -880,24 +880,24 @@ discard block |
||
| 880 | 880 | } |
| 881 | 881 | |
| 882 | 882 | public static function route() { |
| 883 | - $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 883 | + $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
| 884 | 884 | $vars = array(); |
| 885 | 885 | if ( isset( $_POST['frm_compact_fields'] ) ) { |
| 886 | 886 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 887 | 887 | |
| 888 | - $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('"', '\\\"', $_POST['frm_compact_fields'] )))); |
|
| 889 | - $json_vars = json_decode($json_vars, true); |
|
| 890 | - if ( empty($json_vars) ) { |
|
| 888 | + $json_vars = htmlspecialchars_decode( nl2br( stripslashes( str_replace( '"', '\\\"', $_POST['frm_compact_fields'] ) ) ) ); |
|
| 889 | + $json_vars = json_decode( $json_vars, true ); |
|
| 890 | + if ( empty( $json_vars ) ) { |
|
| 891 | 891 | // json decoding failed so we should return an error message |
| 892 | 892 | $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); |
| 893 | 893 | if ( 'edit' == $action ) { |
| 894 | 894 | $action = 'update'; |
| 895 | 895 | } |
| 896 | 896 | |
| 897 | - add_filter('frm_validate_form', 'FrmFormsController::json_error'); |
|
| 897 | + add_filter( 'frm_validate_form', 'FrmFormsController::json_error' ); |
|
| 898 | 898 | } else { |
| 899 | - $vars = FrmAppHelper::json_to_array($json_vars); |
|
| 900 | - $action = $vars[ $action ]; |
|
| 899 | + $vars = FrmAppHelper::json_to_array( $json_vars ); |
|
| 900 | + $action = $vars[$action]; |
|
| 901 | 901 | unset( $_REQUEST['frm_compact_fields'], $_POST['frm_compact_fields'] ); |
| 902 | 902 | $_REQUEST = array_merge( $_REQUEST, $vars ); |
| 903 | 903 | $_POST = array_merge( $_POST, $_REQUEST ); |
@@ -915,7 +915,7 @@ discard block |
||
| 915 | 915 | |
| 916 | 916 | switch ( $action ) { |
| 917 | 917 | case 'new': |
| 918 | - return self::new_form($vars); |
|
| 918 | + return self::new_form( $vars ); |
|
| 919 | 919 | case 'create': |
| 920 | 920 | case 'edit': |
| 921 | 921 | case 'update': |
@@ -938,7 +938,7 @@ discard block |
||
| 938 | 938 | $action = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' ); |
| 939 | 939 | } |
| 940 | 940 | |
| 941 | - if ( strpos($action, 'bulk_') === 0 ) { |
|
| 941 | + if ( strpos( $action, 'bulk_' ) === 0 ) { |
|
| 942 | 942 | FrmAppHelper::remove_get_action(); |
| 943 | 943 | return self::list_form(); |
| 944 | 944 | } |
@@ -965,27 +965,27 @@ discard block |
||
| 965 | 965 | |
| 966 | 966 | public static function admin_bar_configure() { |
| 967 | 967 | global $frm_vars; |
| 968 | - if ( empty($frm_vars['forms_loaded']) ) { |
|
| 968 | + if ( empty( $frm_vars['forms_loaded'] ) ) { |
|
| 969 | 969 | return; |
| 970 | 970 | } |
| 971 | 971 | |
| 972 | 972 | $actions = array(); |
| 973 | 973 | foreach ( $frm_vars['forms_loaded'] as $form ) { |
| 974 | - if ( is_object($form) ) { |
|
| 975 | - $actions[ $form->id ] = $form->name; |
|
| 974 | + if ( is_object( $form ) ) { |
|
| 975 | + $actions[$form->id] = $form->name; |
|
| 976 | 976 | } |
| 977 | - unset($form); |
|
| 977 | + unset( $form ); |
|
| 978 | 978 | } |
| 979 | 979 | |
| 980 | - if ( empty($actions) ) { |
|
| 980 | + if ( empty( $actions ) ) { |
|
| 981 | 981 | return; |
| 982 | 982 | } |
| 983 | 983 | |
| 984 | - asort($actions); |
|
| 984 | + asort( $actions ); |
|
| 985 | 985 | |
| 986 | 986 | global $wp_admin_bar; |
| 987 | 987 | |
| 988 | - if ( count($actions) == 1 ) { |
|
| 988 | + if ( count( $actions ) == 1 ) { |
|
| 989 | 989 | $wp_admin_bar->add_menu( array( |
| 990 | 990 | 'title' => 'Edit Form', |
| 991 | 991 | 'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ), |
@@ -1006,7 +1006,7 @@ discard block |
||
| 1006 | 1006 | $wp_admin_bar->add_menu( array( |
| 1007 | 1007 | 'parent' => 'frm-forms', |
| 1008 | 1008 | 'id' => 'edit_form_' . $form_id, |
| 1009 | - 'title' => empty($name) ? __( '(no title)') : $name, |
|
| 1009 | + 'title' => empty( $name ) ? __( '(no title)' ) : $name, |
|
| 1010 | 1010 | 'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ), |
| 1011 | 1011 | ) ); |
| 1012 | 1012 | } |
@@ -1016,7 +1016,7 @@ discard block |
||
| 1016 | 1016 | //formidable shortcode |
| 1017 | 1017 | public static function get_form_shortcode( $atts ) { |
| 1018 | 1018 | global $frm_vars; |
| 1019 | - if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) { |
|
| 1019 | + if ( isset( $frm_vars['skip_shortcode'] ) && $frm_vars['skip_shortcode'] ) { |
|
| 1020 | 1020 | $sc = '[formidable'; |
| 1021 | 1021 | if ( ! empty( $atts ) ) { |
| 1022 | 1022 | foreach ( $atts as $k => $v ) { |
@@ -1030,8 +1030,8 @@ discard block |
||
| 1030 | 1030 | 'id' => '', 'key' => '', 'title' => false, 'description' => false, |
| 1031 | 1031 | 'readonly' => false, 'entry_id' => false, 'fields' => array(), |
| 1032 | 1032 | 'exclude_fields' => array(), 'minimize' => false, |
| 1033 | - ), $atts); |
|
| 1034 | - do_action('formidable_shortcode_atts', $shortcode_atts, $atts); |
|
| 1033 | + ), $atts ); |
|
| 1034 | + do_action( 'formidable_shortcode_atts', $shortcode_atts, $atts ); |
|
| 1035 | 1035 | |
| 1036 | 1036 | return self::show_form( |
| 1037 | 1037 | $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'], |
@@ -1119,51 +1119,51 @@ discard block |
||
| 1119 | 1119 | |
| 1120 | 1120 | $frm_settings = FrmAppHelper::get_settings(); |
| 1121 | 1121 | |
| 1122 | - $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value; |
|
| 1122 | + $submit = isset( $form->options['submit_value'] ) ? $form->options['submit_value'] : $frm_settings->submit_value; |
|
| 1123 | 1123 | |
| 1124 | 1124 | $user_ID = get_current_user_id(); |
| 1125 | 1125 | $params = FrmForm::get_params( $form ); |
| 1126 | 1126 | $message = $errors = ''; |
| 1127 | 1127 | |
| 1128 | 1128 | if ( $params['posted_form_id'] == $form->id && $_POST ) { |
| 1129 | - $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array(); |
|
| 1129 | + $errors = isset( $frm_vars['created_entries'][$form->id] ) ? $frm_vars['created_entries'][$form->id]['errors'] : array(); |
|
| 1130 | 1130 | } |
| 1131 | 1131 | |
| 1132 | 1132 | $include_form_tag = apply_filters( 'frm_include_form_tag', true, $form ); |
| 1133 | 1133 | $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) ); |
| 1134 | 1134 | |
| 1135 | 1135 | if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) { |
| 1136 | - do_action('frm_display_form_action', $params, $fields, $form, $title, $description); |
|
| 1137 | - if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) { |
|
| 1138 | - $values = FrmEntriesHelper::setup_new_vars($fields, $form); |
|
| 1136 | + do_action( 'frm_display_form_action', $params, $fields, $form, $title, $description ); |
|
| 1137 | + if ( apply_filters( 'frm_continue_to_new', true, $form->id, $params['action'] ) ) { |
|
| 1138 | + $values = FrmEntriesHelper::setup_new_vars( $fields, $form ); |
|
| 1139 | 1139 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1140 | 1140 | } |
| 1141 | 1141 | return; |
| 1142 | 1142 | } |
| 1143 | 1143 | |
| 1144 | - if ( ! empty($errors) ) { |
|
| 1145 | - $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array(); |
|
| 1144 | + if ( ! empty( $errors ) ) { |
|
| 1145 | + $values = $fields ? FrmEntriesHelper::setup_new_vars( $fields, $form ) : array(); |
|
| 1146 | 1146 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1147 | 1147 | return; |
| 1148 | 1148 | } |
| 1149 | 1149 | |
| 1150 | - do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description); |
|
| 1151 | - if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) { |
|
| 1150 | + do_action( 'frm_validate_form_creation', $params, $fields, $form, $title, $description ); |
|
| 1151 | + if ( ! apply_filters( 'frm_continue_to_create', true, $form->id ) ) { |
|
| 1152 | 1152 | return; |
| 1153 | 1153 | } |
| 1154 | 1154 | |
| 1155 | - $values = FrmEntriesHelper::setup_new_vars($fields, $form, true); |
|
| 1156 | - $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0; |
|
| 1157 | - $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create'); |
|
| 1155 | + $values = FrmEntriesHelper::setup_new_vars( $fields, $form, true ); |
|
| 1156 | + $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][$form->id] ) ) ? $frm_vars['created_entries'][$form->id]['entry_id'] : 0; |
|
| 1157 | + $conf_method = apply_filters( 'frm_success_filter', 'message', $form, $form->options, 'create' ); |
|
| 1158 | 1158 | |
| 1159 | - if ( $created && is_numeric($created) && $conf_method != 'message' ) { |
|
| 1160 | - do_action('frm_success_action', $conf_method, $form, $form->options, $created); |
|
| 1159 | + if ( $created && is_numeric( $created ) && $conf_method != 'message' ) { |
|
| 1160 | + do_action( 'frm_success_action', $conf_method, $form, $form->options, $created ); |
|
| 1161 | 1161 | do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) ); |
| 1162 | 1162 | return; |
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | - if ( $created && is_numeric($created) ) { |
|
| 1166 | - $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg; |
|
| 1165 | + if ( $created && is_numeric( $created ) ) { |
|
| 1166 | + $message = isset( $form->options['success_msg'] ) ? $form->options['success_msg'] : $frm_settings->success_msg; |
|
| 1167 | 1167 | $class = 'frm_message'; |
| 1168 | 1168 | } else { |
| 1169 | 1169 | $message = $frm_settings->failed_msg; |
@@ -1174,9 +1174,9 @@ discard block |
||
| 1174 | 1174 | 'message' => $message, 'form' => $form, |
| 1175 | 1175 | 'entry_id' => $created, 'class' => $class, |
| 1176 | 1176 | ) ); |
| 1177 | - $message = apply_filters('frm_main_feedback', $message, $form, $created); |
|
| 1177 | + $message = apply_filters( 'frm_main_feedback', $message, $form, $created ); |
|
| 1178 | 1178 | |
| 1179 | - if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) { |
|
| 1179 | + if ( ! isset( $form->options['show_form'] ) || $form->options['show_form'] ) { |
|
| 1180 | 1180 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1181 | 1181 | } else { |
| 1182 | 1182 | global $frm_vars; |
@@ -2,7 +2,7 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | class FrmFormsController { |
| 4 | 4 | |
| 5 | - public static function menu() { |
|
| 5 | + public static function menu() { |
|
| 6 | 6 | $menu_label = __( 'Forms', 'formidable' ); |
| 7 | 7 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 8 | 8 | $menu_label .= ' (Lite)'; |
@@ -10,7 +10,7 @@ discard block |
||
| 10 | 10 | add_submenu_page('formidable', 'Formidable | ' . $menu_label, $menu_label, 'frm_view_forms', 'formidable', 'FrmFormsController::route' ); |
| 11 | 11 | |
| 12 | 12 | self::maybe_load_listing_hooks(); |
| 13 | - } |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | 15 | public static function maybe_load_listing_hooks() { |
| 16 | 16 | $action = FrmAppHelper::simple_get( 'frm_action', 'sanitize_title' ); |
@@ -24,128 +24,128 @@ discard block |
||
| 24 | 24 | add_filter('manage_toplevel_page_formidable_sortable_columns', 'FrmFormsController::get_sortable_columns' ); |
| 25 | 25 | } |
| 26 | 26 | |
| 27 | - public static function head() { |
|
| 28 | - wp_enqueue_script('formidable-editinplace'); |
|
| 27 | + public static function head() { |
|
| 28 | + wp_enqueue_script('formidable-editinplace'); |
|
| 29 | 29 | |
| 30 | - if ( wp_is_mobile() ) { |
|
| 31 | - wp_enqueue_script( 'jquery-touch-punch' ); |
|
| 32 | - } |
|
| 33 | - } |
|
| 30 | + if ( wp_is_mobile() ) { |
|
| 31 | + wp_enqueue_script( 'jquery-touch-punch' ); |
|
| 32 | + } |
|
| 33 | + } |
|
| 34 | 34 | |
| 35 | - public static function register_widgets() { |
|
| 36 | - require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php'); |
|
| 37 | - register_widget('FrmShowForm'); |
|
| 38 | - } |
|
| 35 | + public static function register_widgets() { |
|
| 36 | + require_once(FrmAppHelper::plugin_path() . '/classes/widgets/FrmShowForm.php'); |
|
| 37 | + register_widget('FrmShowForm'); |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - public static function list_form() { |
|
| 41 | - FrmAppHelper::permission_check('frm_view_forms'); |
|
| 40 | + public static function list_form() { |
|
| 41 | + FrmAppHelper::permission_check('frm_view_forms'); |
|
| 42 | 42 | |
| 43 | 43 | $params = FrmForm::list_page_params(); |
| 44 | - $errors = self::process_bulk_form_actions( array()); |
|
| 45 | - $errors = apply_filters('frm_admin_list_form_action', $errors); |
|
| 44 | + $errors = self::process_bulk_form_actions( array()); |
|
| 45 | + $errors = apply_filters('frm_admin_list_form_action', $errors); |
|
| 46 | 46 | |
| 47 | 47 | return self::display_forms_list( $params, '', $errors ); |
| 48 | - } |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | 50 | public static function new_form( $values = array() ) { |
| 51 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 51 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 52 | 52 | |
| 53 | - global $frm_vars; |
|
| 53 | + global $frm_vars; |
|
| 54 | 54 | |
| 55 | - $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 55 | + $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 56 | 56 | $action = empty( $values ) ? FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ) : $values[ $action ]; |
| 57 | 57 | |
| 58 | 58 | if ( $action == 'create' ) { |
| 59 | - return self::create($values); |
|
| 59 | + return self::create($values); |
|
| 60 | 60 | } else if ( $action == 'new' ) { |
| 61 | 61 | $frm_field_selection = FrmField::field_selection(); |
| 62 | - $values = FrmFormsHelper::setup_new_vars($values); |
|
| 63 | - $id = FrmForm::create( $values ); |
|
| 64 | - $form = FrmForm::getOne($id); |
|
| 62 | + $values = FrmFormsHelper::setup_new_vars($values); |
|
| 63 | + $id = FrmForm::create( $values ); |
|
| 64 | + $form = FrmForm::getOne($id); |
|
| 65 | 65 | |
| 66 | - // add default email notification |
|
| 67 | - $action_control = FrmFormActionsController::get_form_actions( 'email' ); |
|
| 68 | - $action_control->create($form->id); |
|
| 66 | + // add default email notification |
|
| 67 | + $action_control = FrmFormActionsController::get_form_actions( 'email' ); |
|
| 68 | + $action_control->create($form->id); |
|
| 69 | 69 | |
| 70 | 70 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 71 | 71 | |
| 72 | - $values['id'] = $id; |
|
| 72 | + $values['id'] = $id; |
|
| 73 | 73 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' ); |
| 74 | - } |
|
| 75 | - } |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | 77 | public static function create( $values = array() ) { |
| 78 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 78 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 79 | 79 | |
| 80 | - global $frm_vars; |
|
| 81 | - if ( empty( $values ) ) { |
|
| 82 | - $values = $_POST; |
|
| 83 | - } |
|
| 80 | + global $frm_vars; |
|
| 81 | + if ( empty( $values ) ) { |
|
| 82 | + $values = $_POST; |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - //Set radio button and checkbox meta equal to "other" value |
|
| 86 | - if ( FrmAppHelper::pro_is_installed() ) { |
|
| 87 | - $values = FrmProEntry::mod_other_vals( $values, 'back' ); |
|
| 88 | - } |
|
| 85 | + //Set radio button and checkbox meta equal to "other" value |
|
| 86 | + if ( FrmAppHelper::pro_is_installed() ) { |
|
| 87 | + $values = FrmProEntry::mod_other_vals( $values, 'back' ); |
|
| 88 | + } |
|
| 89 | 89 | |
| 90 | 90 | $id = isset($values['id']) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 91 | 91 | |
| 92 | - if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) { |
|
| 93 | - $frm_settings = FrmAppHelper::get_settings(); |
|
| 94 | - $errors = array( 'form' => $frm_settings->admin_permission ); |
|
| 95 | - } else { |
|
| 96 | - $errors = FrmForm::validate($values); |
|
| 97 | - } |
|
| 92 | + if ( ! current_user_can( 'frm_edit_forms' ) || ( $_POST && ( ! isset( $values['frm_save_form'] ) || ! wp_verify_nonce( $values['frm_save_form'], 'frm_save_form_nonce' ) ) ) ) { |
|
| 93 | + $frm_settings = FrmAppHelper::get_settings(); |
|
| 94 | + $errors = array( 'form' => $frm_settings->admin_permission ); |
|
| 95 | + } else { |
|
| 96 | + $errors = FrmForm::validate($values); |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | - if ( count($errors) > 0 ) { |
|
| 100 | - $hide_preview = true; |
|
| 99 | + if ( count($errors) > 0 ) { |
|
| 100 | + $hide_preview = true; |
|
| 101 | 101 | $frm_field_selection = FrmField::field_selection(); |
| 102 | - $form = FrmForm::getOne( $id ); |
|
| 103 | - $fields = FrmField::get_all_for_form($id); |
|
| 102 | + $form = FrmForm::getOne( $id ); |
|
| 103 | + $fields = FrmField::get_all_for_form($id); |
|
| 104 | 104 | |
| 105 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 105 | + $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 106 | 106 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 107 | 107 | |
| 108 | 108 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' ); |
| 109 | - } else { |
|
| 110 | - FrmForm::update( $id, $values, true ); |
|
| 109 | + } else { |
|
| 110 | + FrmForm::update( $id, $values, true ); |
|
| 111 | 111 | $url = admin_url( 'admin.php?page=formidable&frm_action=settings&id=' . $id ); |
| 112 | 112 | die( FrmAppHelper::js_redirect( $url ) ); |
| 113 | - } |
|
| 114 | - } |
|
| 113 | + } |
|
| 114 | + } |
|
| 115 | 115 | |
| 116 | - public static function edit( $values = false ) { |
|
| 117 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 116 | + public static function edit( $values = false ) { |
|
| 117 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 118 | 118 | |
| 119 | 119 | $id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 120 | - return self::get_edit_vars($id); |
|
| 121 | - } |
|
| 120 | + return self::get_edit_vars($id); |
|
| 121 | + } |
|
| 122 | 122 | |
| 123 | - public static function settings( $id = false, $message = '' ) { |
|
| 124 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 123 | + public static function settings( $id = false, $message = '' ) { |
|
| 124 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 125 | 125 | |
| 126 | - if ( ! $id || ! is_numeric($id) ) { |
|
| 126 | + if ( ! $id || ! is_numeric($id) ) { |
|
| 127 | 127 | $id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 128 | - } |
|
| 128 | + } |
|
| 129 | 129 | return self::get_settings_vars( $id, array(), $message ); |
| 130 | - } |
|
| 130 | + } |
|
| 131 | 131 | |
| 132 | - public static function update_settings() { |
|
| 133 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 132 | + public static function update_settings() { |
|
| 133 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 134 | 134 | |
| 135 | 135 | $id = FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 136 | 136 | |
| 137 | - $errors = FrmForm::validate($_POST); |
|
| 138 | - if ( count($errors) > 0 ) { |
|
| 139 | - return self::get_settings_vars($id, $errors); |
|
| 140 | - } |
|
| 137 | + $errors = FrmForm::validate($_POST); |
|
| 138 | + if ( count($errors) > 0 ) { |
|
| 139 | + return self::get_settings_vars($id, $errors); |
|
| 140 | + } |
|
| 141 | 141 | |
| 142 | - do_action('frm_before_update_form_settings', $id); |
|
| 142 | + do_action('frm_before_update_form_settings', $id); |
|
| 143 | 143 | |
| 144 | 144 | FrmForm::update( $id, $_POST ); |
| 145 | 145 | |
| 146 | - $message = __( 'Settings Successfully Updated', 'formidable' ); |
|
| 146 | + $message = __( 'Settings Successfully Updated', 'formidable' ); |
|
| 147 | 147 | return self::get_settings_vars( $id, array(), $message ); |
| 148 | - } |
|
| 148 | + } |
|
| 149 | 149 | |
| 150 | 150 | public static function edit_key() { |
| 151 | 151 | $values = self::edit_in_place_value( 'form_key' ); |
@@ -175,43 +175,43 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | public static function update( $values = array() ) { |
| 177 | 177 | if ( empty( $values ) ) { |
| 178 | - $values = $_POST; |
|
| 179 | - } |
|
| 178 | + $values = $_POST; |
|
| 179 | + } |
|
| 180 | 180 | |
| 181 | - //Set radio button and checkbox meta equal to "other" value |
|
| 182 | - if ( FrmAppHelper::pro_is_installed() ) { |
|
| 183 | - $values = FrmProEntry::mod_other_vals( $values, 'back' ); |
|
| 184 | - } |
|
| 181 | + //Set radio button and checkbox meta equal to "other" value |
|
| 182 | + if ( FrmAppHelper::pro_is_installed() ) { |
|
| 183 | + $values = FrmProEntry::mod_other_vals( $values, 'back' ); |
|
| 184 | + } |
|
| 185 | 185 | |
| 186 | - $errors = FrmForm::validate( $values ); |
|
| 187 | - $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'frm_save_form', 'frm_save_form_nonce' ); |
|
| 188 | - if ( $permission_error !== false ) { |
|
| 189 | - $errors['form'] = $permission_error; |
|
| 190 | - } |
|
| 186 | + $errors = FrmForm::validate( $values ); |
|
| 187 | + $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'frm_save_form', 'frm_save_form_nonce' ); |
|
| 188 | + if ( $permission_error !== false ) { |
|
| 189 | + $errors['form'] = $permission_error; |
|
| 190 | + } |
|
| 191 | 191 | |
| 192 | 192 | $id = isset( $values['id'] ) ? absint( $values['id'] ) : FrmAppHelper::get_param( 'id', '', 'get', 'absint' ); |
| 193 | 193 | |
| 194 | 194 | if ( count( $errors ) > 0 ) { |
| 195 | - return self::get_edit_vars( $id, $errors ); |
|
| 195 | + return self::get_edit_vars( $id, $errors ); |
|
| 196 | 196 | } else { |
| 197 | - FrmForm::update( $id, $values ); |
|
| 198 | - $message = __( 'Form was Successfully Updated', 'formidable' ); |
|
| 199 | - if ( defined( 'DOING_AJAX' ) ) { |
|
| 197 | + FrmForm::update( $id, $values ); |
|
| 198 | + $message = __( 'Form was Successfully Updated', 'formidable' ); |
|
| 199 | + if ( defined( 'DOING_AJAX' ) ) { |
|
| 200 | 200 | wp_die( $message ); |
| 201 | - } |
|
| 201 | + } |
|
| 202 | 202 | return self::get_edit_vars( $id, array(), $message ); |
| 203 | - } |
|
| 204 | - } |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | 205 | |
| 206 | - public static function bulk_create_template( $ids ) { |
|
| 207 | - FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 206 | + public static function bulk_create_template( $ids ) { |
|
| 207 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 208 | 208 | |
| 209 | - foreach ( $ids as $id ) { |
|
| 210 | - FrmForm::duplicate( $id, true, true ); |
|
| 211 | - } |
|
| 209 | + foreach ( $ids as $id ) { |
|
| 210 | + FrmForm::duplicate( $id, true, true ); |
|
| 211 | + } |
|
| 212 | 212 | |
| 213 | - return __( 'Form template was Successfully Created', 'formidable' ); |
|
| 214 | - } |
|
| 213 | + return __( 'Form template was Successfully Created', 'formidable' ); |
|
| 214 | + } |
|
| 215 | 215 | |
| 216 | 216 | /** |
| 217 | 217 | * Redirect to the url for creating from a template |
@@ -233,45 +233,45 @@ discard block |
||
| 233 | 233 | wp_die(); |
| 234 | 234 | } |
| 235 | 235 | |
| 236 | - public static function duplicate() { |
|
| 237 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 236 | + public static function duplicate() { |
|
| 237 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 238 | 238 | |
| 239 | 239 | $params = FrmForm::list_page_params(); |
| 240 | - $form = FrmForm::duplicate( $params['id'], $params['template'], true ); |
|
| 241 | - $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' ); |
|
| 242 | - if ( $form ) { |
|
| 240 | + $form = FrmForm::duplicate( $params['id'], $params['template'], true ); |
|
| 241 | + $message = ($params['template']) ? __( 'Form template was Successfully Created', 'formidable' ) : __( 'Form was Successfully Copied', 'formidable' ); |
|
| 242 | + if ( $form ) { |
|
| 243 | 243 | return self::get_edit_vars( $form, array(), $message, true ); |
| 244 | - } else { |
|
| 245 | - return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' )); |
|
| 246 | - } |
|
| 247 | - } |
|
| 244 | + } else { |
|
| 245 | + return self::display_forms_list($params, __( 'There was a problem creating the new template.', 'formidable' )); |
|
| 246 | + } |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | - public static function page_preview() { |
|
| 249 | + public static function page_preview() { |
|
| 250 | 250 | $params = FrmForm::list_page_params(); |
| 251 | - if ( ! $params['form'] ) { |
|
| 252 | - return; |
|
| 253 | - } |
|
| 254 | - |
|
| 255 | - $form = FrmForm::getOne( $params['form'] ); |
|
| 256 | - if ( ! $form ) { |
|
| 257 | - return; |
|
| 258 | - } |
|
| 259 | - return self::show_form( $form->id, '', true, true ); |
|
| 260 | - } |
|
| 261 | - |
|
| 262 | - public static function preview() { |
|
| 263 | - do_action( 'frm_wp' ); |
|
| 264 | - |
|
| 265 | - global $frm_vars; |
|
| 266 | - $frm_vars['preview'] = true; |
|
| 267 | - |
|
| 268 | - if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) { |
|
| 269 | - global $wp; |
|
| 270 | - $root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ); |
|
| 251 | + if ( ! $params['form'] ) { |
|
| 252 | + return; |
|
| 253 | + } |
|
| 254 | + |
|
| 255 | + $form = FrmForm::getOne( $params['form'] ); |
|
| 256 | + if ( ! $form ) { |
|
| 257 | + return; |
|
| 258 | + } |
|
| 259 | + return self::show_form( $form->id, '', true, true ); |
|
| 260 | + } |
|
| 261 | + |
|
| 262 | + public static function preview() { |
|
| 263 | + do_action( 'frm_wp' ); |
|
| 264 | + |
|
| 265 | + global $frm_vars; |
|
| 266 | + $frm_vars['preview'] = true; |
|
| 267 | + |
|
| 268 | + if ( ! defined( 'ABSPATH' ) && ! defined( 'XMLRPC_REQUEST' ) ) { |
|
| 269 | + global $wp; |
|
| 270 | + $root = dirname( dirname( dirname( dirname( __FILE__ ) ) ) ); |
|
| 271 | 271 | include_once( $root . '/wp-config.php' ); |
| 272 | - $wp->init(); |
|
| 273 | - $wp->register_globals(); |
|
| 274 | - } |
|
| 272 | + $wp->init(); |
|
| 273 | + $wp->register_globals(); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | 276 | self::register_pro_scripts(); |
| 277 | 277 | |
@@ -285,11 +285,11 @@ discard block |
||
| 285 | 285 | $form = FrmForm::getAll( array( 'form_key' => $key ), '', 1 ); |
| 286 | 286 | if ( empty( $form ) ) { |
| 287 | 287 | $form = FrmForm::getAll( array(), '', 1 ); |
| 288 | - } |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | 290 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/direct.php' ); |
| 291 | - wp_die(); |
|
| 292 | - } |
|
| 291 | + wp_die(); |
|
| 292 | + } |
|
| 293 | 293 | |
| 294 | 294 | public static function register_pro_scripts() { |
| 295 | 295 | if ( FrmAppHelper::pro_is_installed() ) { |
@@ -299,22 +299,22 @@ discard block |
||
| 299 | 299 | } |
| 300 | 300 | } |
| 301 | 301 | |
| 302 | - public static function untrash() { |
|
| 302 | + public static function untrash() { |
|
| 303 | 303 | self::change_form_status( 'untrash' ); |
| 304 | - } |
|
| 304 | + } |
|
| 305 | 305 | |
| 306 | 306 | public static function bulk_untrash( $ids ) { |
| 307 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 307 | + FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 308 | 308 | |
| 309 | - $count = FrmForm::set_status( $ids, 'published' ); |
|
| 309 | + $count = FrmForm::set_status( $ids, 'published' ); |
|
| 310 | 310 | |
| 311 | - $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 ); |
|
| 312 | - return $message; |
|
| 313 | - } |
|
| 311 | + $message = sprintf(_n( '%1$s form restored from the Trash.', '%1$s forms restored from the Trash.', $count, 'formidable' ), 1 ); |
|
| 312 | + return $message; |
|
| 313 | + } |
|
| 314 | 314 | |
| 315 | - public static function trash() { |
|
| 315 | + public static function trash() { |
|
| 316 | 316 | self::change_form_status( 'trash' ); |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | |
| 319 | 319 | /** |
| 320 | 320 | * @param string $status |
@@ -352,68 +352,68 @@ discard block |
||
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | public static function bulk_trash( $ids ) { |
| 355 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 355 | + FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 356 | 356 | |
| 357 | - $count = 0; |
|
| 358 | - foreach ( $ids as $id ) { |
|
| 359 | - if ( FrmForm::trash( $id ) ) { |
|
| 360 | - $count++; |
|
| 361 | - } |
|
| 362 | - } |
|
| 357 | + $count = 0; |
|
| 358 | + foreach ( $ids as $id ) { |
|
| 359 | + if ( FrmForm::trash( $id ) ) { |
|
| 360 | + $count++; |
|
| 361 | + } |
|
| 362 | + } |
|
| 363 | 363 | |
| 364 | - $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
| 364 | + $current_page = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
| 365 | 365 | $message = sprintf( _n( '%1$s form moved to the Trash. %2$sUndo%3$s', '%1$s forms moved to the Trash. %2$sUndo%3$s', $count, 'formidable' ), $count, '<a href="' . esc_url( wp_nonce_url( '?page=formidable&frm_action=list&action=bulk_untrash&form_type=' . $current_page . '&item-action[]=' . implode( 'item-action[]=', $ids ), 'bulk-toplevel_page_formidable' ) ) . '">', '</a>' ); |
| 366 | 366 | |
| 367 | - return $message; |
|
| 368 | - } |
|
| 367 | + return $message; |
|
| 368 | + } |
|
| 369 | 369 | |
| 370 | - public static function destroy() { |
|
| 371 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 370 | + public static function destroy() { |
|
| 371 | + FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 372 | 372 | |
| 373 | 373 | $params = FrmForm::list_page_params(); |
| 374 | 374 | |
| 375 | - //check nonce url |
|
| 376 | - check_admin_referer('destroy_form_' . $params['id']); |
|
| 375 | + //check nonce url |
|
| 376 | + check_admin_referer('destroy_form_' . $params['id']); |
|
| 377 | 377 | |
| 378 | - $count = 0; |
|
| 379 | - if ( FrmForm::destroy( $params['id'] ) ) { |
|
| 380 | - $count++; |
|
| 381 | - } |
|
| 378 | + $count = 0; |
|
| 379 | + if ( FrmForm::destroy( $params['id'] ) ) { |
|
| 380 | + $count++; |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 383 | + $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 384 | 384 | |
| 385 | 385 | self::display_forms_list( $params, $message ); |
| 386 | - } |
|
| 386 | + } |
|
| 387 | 387 | |
| 388 | 388 | public static function bulk_destroy( $ids ) { |
| 389 | - FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 389 | + FrmAppHelper::permission_check('frm_delete_forms'); |
|
| 390 | 390 | |
| 391 | - $count = 0; |
|
| 392 | - foreach ( $ids as $id ) { |
|
| 393 | - $d = FrmForm::destroy( $id ); |
|
| 394 | - if ( $d ) { |
|
| 395 | - $count++; |
|
| 396 | - } |
|
| 397 | - } |
|
| 391 | + $count = 0; |
|
| 392 | + foreach ( $ids as $id ) { |
|
| 393 | + $d = FrmForm::destroy( $id ); |
|
| 394 | + if ( $d ) { |
|
| 395 | + $count++; |
|
| 396 | + } |
|
| 397 | + } |
|
| 398 | 398 | |
| 399 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 399 | + $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 400 | 400 | |
| 401 | - return $message; |
|
| 402 | - } |
|
| 401 | + return $message; |
|
| 402 | + } |
|
| 403 | 403 | |
| 404 | - private static function delete_all() { |
|
| 405 | - //check nonce url |
|
| 406 | - $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable'); |
|
| 407 | - if ( $permission_error !== false ) { |
|
| 404 | + private static function delete_all() { |
|
| 405 | + //check nonce url |
|
| 406 | + $permission_error = FrmAppHelper::permission_nonce_error('frm_delete_forms', '_wpnonce', 'bulk-toplevel_page_formidable'); |
|
| 407 | + if ( $permission_error !== false ) { |
|
| 408 | 408 | self::display_forms_list( array(), '', array( $permission_error ) ); |
| 409 | - return; |
|
| 410 | - } |
|
| 409 | + return; |
|
| 410 | + } |
|
| 411 | 411 | |
| 412 | 412 | $count = FrmForm::scheduled_delete( time() ); |
| 413 | - $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 413 | + $message = sprintf(_n( '%1$s form permanently deleted.', '%1$s forms permanently deleted.', $count, 'formidable' ), $count); |
|
| 414 | 414 | |
| 415 | 415 | self::display_forms_list( array(), $message ); |
| 416 | - } |
|
| 416 | + } |
|
| 417 | 417 | |
| 418 | 418 | public static function scheduled_delete( $delete_timestamp = '' ) { |
| 419 | 419 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmForm::scheduled_delete' ); |
@@ -421,11 +421,11 @@ discard block |
||
| 421 | 421 | } |
| 422 | 422 | |
| 423 | 423 | /** |
| 424 | - * Inserts Formidable button |
|
| 425 | - * Hook exists since 2.5.0 |
|
| 426 | - * |
|
| 427 | - * @since 2.0.15 |
|
| 428 | - */ |
|
| 424 | + * Inserts Formidable button |
|
| 425 | + * Hook exists since 2.5.0 |
|
| 426 | + * |
|
| 427 | + * @since 2.0.15 |
|
| 428 | + */ |
|
| 429 | 429 | public static function insert_form_button() { |
| 430 | 430 | if ( current_user_can('frm_view_forms') ) { |
| 431 | 431 | $menu_name = FrmAppHelper::get_menu_name(); |
@@ -436,49 +436,49 @@ discard block |
||
| 436 | 436 | } |
| 437 | 437 | } |
| 438 | 438 | |
| 439 | - public static function insert_form_popup() { |
|
| 439 | + public static function insert_form_popup() { |
|
| 440 | 440 | $page = basename( FrmAppHelper::get_server_value( 'PHP_SELF' ) ); |
| 441 | 441 | if ( ! in_array( $page, array( 'post.php', 'page.php', 'page-new.php', 'post-new.php' ) ) ) { |
| 442 | - return; |
|
| 443 | - } |
|
| 442 | + return; |
|
| 443 | + } |
|
| 444 | 444 | |
| 445 | - FrmAppHelper::load_admin_wide_js(); |
|
| 445 | + FrmAppHelper::load_admin_wide_js(); |
|
| 446 | 446 | |
| 447 | - $shortcodes = array( |
|
| 447 | + $shortcodes = array( |
|
| 448 | 448 | 'formidable' => array( 'name' => __( 'Form', 'formidable' ), 'label' => __( 'Insert a Form', 'formidable' ) ), |
| 449 | - ); |
|
| 449 | + ); |
|
| 450 | 450 | |
| 451 | - $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes); |
|
| 451 | + $shortcodes = apply_filters('frm_popup_shortcodes', $shortcodes); |
|
| 452 | 452 | |
| 453 | 453 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/insert_form_popup.php' ); |
| 454 | - } |
|
| 454 | + } |
|
| 455 | 455 | |
| 456 | - public static function get_shortcode_opts() { |
|
| 456 | + public static function get_shortcode_opts() { |
|
| 457 | 457 | FrmAppHelper::permission_check('frm_view_forms'); |
| 458 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 458 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 459 | 459 | |
| 460 | 460 | $shortcode = FrmAppHelper::get_post_param( 'shortcode', '', 'sanitize_text_field' ); |
| 461 | - if ( empty($shortcode) ) { |
|
| 462 | - wp_die(); |
|
| 463 | - } |
|
| 461 | + if ( empty($shortcode) ) { |
|
| 462 | + wp_die(); |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | 465 | echo '<div id="sc-opts-' . esc_attr( $shortcode ) . '" class="frm_shortcode_option">'; |
| 466 | 466 | echo '<input type="radio" name="frmsc" value="' . esc_attr( $shortcode ) . '" id="sc-' . esc_attr( $shortcode ) . '" class="frm_hidden" />'; |
| 467 | 467 | |
| 468 | - $form_id = ''; |
|
| 469 | - $opts = array(); |
|
| 468 | + $form_id = ''; |
|
| 469 | + $opts = array(); |
|
| 470 | 470 | switch ( $shortcode ) { |
| 471 | - case 'formidable': |
|
| 472 | - $opts = array( |
|
| 471 | + case 'formidable': |
|
| 472 | + $opts = array( |
|
| 473 | 473 | 'form_id' => 'id', |
| 474 | - //'key' => ', |
|
| 474 | + //'key' => ', |
|
| 475 | 475 | 'title' => array( 'val' => 1, 'label' => __( 'Display form title', 'formidable' ) ), |
| 476 | 476 | 'description' => array( 'val' => 1, 'label' => __( 'Display form description', 'formidable' ) ), |
| 477 | 477 | 'minimize' => array( 'val' => 1, 'label' => __( 'Minimize form HTML', 'formidable' ) ), |
| 478 | - ); |
|
| 479 | - break; |
|
| 480 | - } |
|
| 481 | - $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode); |
|
| 478 | + ); |
|
| 479 | + break; |
|
| 480 | + } |
|
| 481 | + $opts = apply_filters('frm_sc_popup_opts', $opts, $shortcode); |
|
| 482 | 482 | |
| 483 | 483 | if ( isset( $opts['form_id'] ) && is_string( $opts['form_id'] ) ) { |
| 484 | 484 | // allow other shortcodes to use the required form id option |
@@ -488,61 +488,61 @@ discard block |
||
| 488 | 488 | |
| 489 | 489 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/shortcode_opts.php' ); |
| 490 | 490 | |
| 491 | - echo '</div>'; |
|
| 491 | + echo '</div>'; |
|
| 492 | 492 | |
| 493 | - wp_die(); |
|
| 494 | - } |
|
| 493 | + wp_die(); |
|
| 494 | + } |
|
| 495 | 495 | |
| 496 | 496 | public static function display_forms_list( $params = array(), $message = '', $errors = array(), $deprecated_errors = array() ) { |
| 497 | - FrmAppHelper::permission_check( 'frm_view_forms' ); |
|
| 497 | + FrmAppHelper::permission_check( 'frm_view_forms' ); |
|
| 498 | 498 | if ( ! empty( $deprecated_errors ) ) { |
| 499 | 499 | $errors = $deprecated_errors; |
| 500 | 500 | _deprecated_argument( 'errors', '2.0.8' ); |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | - global $wpdb, $frm_vars; |
|
| 503 | + global $wpdb, $frm_vars; |
|
| 504 | 504 | |
| 505 | 505 | if ( empty( $params ) ) { |
| 506 | 506 | $params = FrmForm::list_page_params(); |
| 507 | - } |
|
| 507 | + } |
|
| 508 | 508 | |
| 509 | - $wp_list_table = new FrmFormsListHelper( compact( 'params' ) ); |
|
| 509 | + $wp_list_table = new FrmFormsListHelper( compact( 'params' ) ); |
|
| 510 | 510 | |
| 511 | - $pagenum = $wp_list_table->get_pagenum(); |
|
| 511 | + $pagenum = $wp_list_table->get_pagenum(); |
|
| 512 | 512 | |
| 513 | - $wp_list_table->prepare_items(); |
|
| 513 | + $wp_list_table->prepare_items(); |
|
| 514 | 514 | |
| 515 | - $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); |
|
| 516 | - if ( $pagenum > $total_pages && $total_pages > 0 ) { |
|
| 515 | + $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); |
|
| 516 | + if ( $pagenum > $total_pages && $total_pages > 0 ) { |
|
| 517 | 517 | wp_redirect( esc_url_raw( add_query_arg( 'paged', $total_pages ) ) ); |
| 518 | - die(); |
|
| 519 | - } |
|
| 518 | + die(); |
|
| 519 | + } |
|
| 520 | 520 | |
| 521 | 521 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/list.php' ); |
| 522 | - } |
|
| 522 | + } |
|
| 523 | 523 | |
| 524 | 524 | public static function get_columns( $columns ) { |
| 525 | - $columns['cb'] = '<input type="checkbox" />'; |
|
| 526 | - $columns['id'] = 'ID'; |
|
| 525 | + $columns['cb'] = '<input type="checkbox" />'; |
|
| 526 | + $columns['id'] = 'ID'; |
|
| 527 | 527 | |
| 528 | - $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : 'published'; |
|
| 528 | + $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : 'published'; |
|
| 529 | 529 | |
| 530 | - if ( 'template' == $type ) { |
|
| 531 | - $columns['name'] = __( 'Template Name', 'formidable' ); |
|
| 532 | - $columns['type'] = __( 'Type', 'formidable' ); |
|
| 533 | - $columns['form_key'] = __( 'Key', 'formidable' ); |
|
| 534 | - } else { |
|
| 535 | - $columns['name'] = __( 'Form Title', 'formidable' ); |
|
| 536 | - $columns['entries'] = __( 'Entries', 'formidable' ); |
|
| 537 | - $columns['form_key'] = __( 'Key', 'formidable' ); |
|
| 538 | - $columns['shortcode'] = __( 'Shortcodes', 'formidable' ); |
|
| 539 | - } |
|
| 530 | + if ( 'template' == $type ) { |
|
| 531 | + $columns['name'] = __( 'Template Name', 'formidable' ); |
|
| 532 | + $columns['type'] = __( 'Type', 'formidable' ); |
|
| 533 | + $columns['form_key'] = __( 'Key', 'formidable' ); |
|
| 534 | + } else { |
|
| 535 | + $columns['name'] = __( 'Form Title', 'formidable' ); |
|
| 536 | + $columns['entries'] = __( 'Entries', 'formidable' ); |
|
| 537 | + $columns['form_key'] = __( 'Key', 'formidable' ); |
|
| 538 | + $columns['shortcode'] = __( 'Shortcodes', 'formidable' ); |
|
| 539 | + } |
|
| 540 | 540 | |
| 541 | - $columns['created_at'] = __( 'Date', 'formidable' ); |
|
| 541 | + $columns['created_at'] = __( 'Date', 'formidable' ); |
|
| 542 | 542 | |
| 543 | 543 | add_screen_option( 'per_page', array( 'label' => __( 'Forms', 'formidable' ), 'default' => 20, 'option' => 'formidable_page_formidable_per_page' ) ); |
| 544 | 544 | |
| 545 | - return $columns; |
|
| 545 | + return $columns; |
|
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | public static function get_sortable_columns() { |
@@ -556,110 +556,110 @@ discard block |
||
| 556 | 556 | } |
| 557 | 557 | |
| 558 | 558 | public static function hidden_columns( $result ) { |
| 559 | - $return = false; |
|
| 560 | - foreach ( (array) $result as $r ) { |
|
| 561 | - if ( ! empty( $r ) ) { |
|
| 562 | - $return = true; |
|
| 563 | - break; |
|
| 564 | - } |
|
| 565 | - } |
|
| 559 | + $return = false; |
|
| 560 | + foreach ( (array) $result as $r ) { |
|
| 561 | + if ( ! empty( $r ) ) { |
|
| 562 | + $return = true; |
|
| 563 | + break; |
|
| 564 | + } |
|
| 565 | + } |
|
| 566 | 566 | |
| 567 | - if ( $return ) { |
|
| 568 | - return $result; |
|
| 567 | + if ( $return ) { |
|
| 568 | + return $result; |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | - $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
| 571 | + $type = isset( $_REQUEST['form_type'] ) ? $_REQUEST['form_type'] : ''; |
|
| 572 | 572 | |
| 573 | - $result[] = 'created_at'; |
|
| 574 | - if ( $type == 'template' ) { |
|
| 575 | - $result[] = 'id'; |
|
| 576 | - $result[] = 'form_key'; |
|
| 577 | - } |
|
| 573 | + $result[] = 'created_at'; |
|
| 574 | + if ( $type == 'template' ) { |
|
| 575 | + $result[] = 'id'; |
|
| 576 | + $result[] = 'form_key'; |
|
| 577 | + } |
|
| 578 | 578 | |
| 579 | - return $result; |
|
| 580 | - } |
|
| 579 | + return $result; |
|
| 580 | + } |
|
| 581 | 581 | |
| 582 | 582 | public static function save_per_page( $save, $option, $value ) { |
| 583 | - if ( $option == 'formidable_page_formidable_per_page' ) { |
|
| 584 | - $save = (int) $value; |
|
| 585 | - } |
|
| 586 | - return $save; |
|
| 587 | - } |
|
| 583 | + if ( $option == 'formidable_page_formidable_per_page' ) { |
|
| 584 | + $save = (int) $value; |
|
| 585 | + } |
|
| 586 | + return $save; |
|
| 587 | + } |
|
| 588 | 588 | |
| 589 | 589 | private static function get_edit_vars( $id, $errors = array(), $message = '', $create_link = false ) { |
| 590 | - global $frm_vars; |
|
| 590 | + global $frm_vars; |
|
| 591 | 591 | |
| 592 | - $form = FrmForm::getOne( $id ); |
|
| 593 | - if ( ! $form ) { |
|
| 594 | - wp_die( __( 'You are trying to edit a form that does not exist.', 'formidable' ) ); |
|
| 595 | - } |
|
| 592 | + $form = FrmForm::getOne( $id ); |
|
| 593 | + if ( ! $form ) { |
|
| 594 | + wp_die( __( 'You are trying to edit a form that does not exist.', 'formidable' ) ); |
|
| 595 | + } |
|
| 596 | 596 | |
| 597 | - if ( $form->parent_form_id ) { |
|
| 597 | + if ( $form->parent_form_id ) { |
|
| 598 | 598 | wp_die( sprintf( __( 'You are trying to edit a child form. Please edit from %1$shere%2$s', 'formidable' ), '<a href="' . esc_url( admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form->parent_form_id ) ) . '">', '</a>' )); |
| 599 | - } |
|
| 599 | + } |
|
| 600 | 600 | |
| 601 | 601 | $frm_field_selection = FrmField::field_selection(); |
| 602 | - $fields = FrmField::get_all_for_form($form->id); |
|
| 602 | + $fields = FrmField::get_all_for_form($form->id); |
|
| 603 | 603 | |
| 604 | - // Automatically add end section fields if they don't exist (2.0 migration) |
|
| 605 | - $reset_fields = false; |
|
| 606 | - FrmFormsHelper::auto_add_end_section_fields( $form, $fields, $reset_fields ); |
|
| 604 | + // Automatically add end section fields if they don't exist (2.0 migration) |
|
| 605 | + $reset_fields = false; |
|
| 606 | + FrmFormsHelper::auto_add_end_section_fields( $form, $fields, $reset_fields ); |
|
| 607 | 607 | |
| 608 | - if ( $reset_fields ) { |
|
| 609 | - $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' ); |
|
| 610 | - } |
|
| 608 | + if ( $reset_fields ) { |
|
| 609 | + $fields = FrmField::get_all_for_form( $form->id, '', 'exclude' ); |
|
| 610 | + } |
|
| 611 | 611 | |
| 612 | - unset($end_section_values, $last_order, $open, $reset_fields); |
|
| 612 | + unset($end_section_values, $last_order, $open, $reset_fields); |
|
| 613 | 613 | |
| 614 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 614 | + $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 615 | 615 | |
| 616 | - $edit_message = __( 'Form was Successfully Updated', 'formidable' ); |
|
| 617 | - if ( $form->is_template && $message == $edit_message ) { |
|
| 618 | - $message = __( 'Template was Successfully Updated', 'formidable' ); |
|
| 619 | - } |
|
| 616 | + $edit_message = __( 'Form was Successfully Updated', 'formidable' ); |
|
| 617 | + if ( $form->is_template && $message == $edit_message ) { |
|
| 618 | + $message = __( 'Template was Successfully Updated', 'formidable' ); |
|
| 619 | + } |
|
| 620 | 620 | |
| 621 | 621 | $all_templates = FrmForm::getAll( array( 'is_template' => 1 ), 'name' ); |
| 622 | 622 | |
| 623 | - if ( $form->default_template ) { |
|
| 624 | - wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 625 | - } else if ( defined('DOING_AJAX') ) { |
|
| 626 | - wp_die(); |
|
| 627 | - } else if ( $create_link ) { |
|
| 623 | + if ( $form->default_template ) { |
|
| 624 | + wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 625 | + } else if ( defined('DOING_AJAX') ) { |
|
| 626 | + wp_die(); |
|
| 627 | + } else if ( $create_link ) { |
|
| 628 | 628 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/new.php' ); |
| 629 | - } else { |
|
| 629 | + } else { |
|
| 630 | 630 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/edit.php' ); |
| 631 | - } |
|
| 632 | - } |
|
| 631 | + } |
|
| 632 | + } |
|
| 633 | 633 | |
| 634 | 634 | public static function get_settings_vars( $id, $errors = array(), $message = '' ) { |
| 635 | 635 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 636 | 636 | |
| 637 | - global $frm_vars; |
|
| 637 | + global $frm_vars; |
|
| 638 | 638 | |
| 639 | - $form = FrmForm::getOne( $id ); |
|
| 639 | + $form = FrmForm::getOne( $id ); |
|
| 640 | 640 | |
| 641 | - $fields = FrmField::get_all_for_form($id); |
|
| 642 | - $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 641 | + $fields = FrmField::get_all_for_form($id); |
|
| 642 | + $values = FrmAppHelper::setup_edit_vars($form, 'forms', $fields, true); |
|
| 643 | 643 | |
| 644 | - if ( isset($values['default_template']) && $values['default_template'] ) { |
|
| 645 | - wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 646 | - } |
|
| 644 | + if ( isset($values['default_template']) && $values['default_template'] ) { |
|
| 645 | + wp_die(__( 'That template cannot be edited', 'formidable' )); |
|
| 646 | + } |
|
| 647 | 647 | |
| 648 | - $action_controls = FrmFormActionsController::get_form_actions(); |
|
| 648 | + $action_controls = FrmFormActionsController::get_form_actions(); |
|
| 649 | 649 | |
| 650 | - $sections = apply_filters('frm_add_form_settings_section', array(), $values); |
|
| 651 | - $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"'; |
|
| 650 | + $sections = apply_filters('frm_add_form_settings_section', array(), $values); |
|
| 651 | + $pro_feature = FrmAppHelper::pro_is_installed() ? '' : ' class="pro_feature"'; |
|
| 652 | 652 | |
| 653 | - $styles = apply_filters('frm_get_style_opts', array()); |
|
| 653 | + $styles = apply_filters('frm_get_style_opts', array()); |
|
| 654 | 654 | |
| 655 | 655 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-forms/settings.php' ); |
| 656 | - } |
|
| 656 | + } |
|
| 657 | 657 | |
| 658 | - public static function mb_tags_box( $form_id, $class = '' ) { |
|
| 659 | - $fields = FrmField::get_all_for_form($form_id, '', 'include'); |
|
| 660 | - $linked_forms = array(); |
|
| 661 | - $col = 'one'; |
|
| 662 | - $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false; |
|
| 658 | + public static function mb_tags_box( $form_id, $class = '' ) { |
|
| 659 | + $fields = FrmField::get_all_for_form($form_id, '', 'include'); |
|
| 660 | + $linked_forms = array(); |
|
| 661 | + $col = 'one'; |
|
| 662 | + $settings_tab = FrmAppHelper::is_admin_page('formidable' ) ? true : false; |
|
| 663 | 663 | |
| 664 | 664 | $cond_shortcodes = apply_filters( 'frm_conditional_shortcodes', array() ); |
| 665 | 665 | $adv_shortcodes = self::get_advanced_shortcodes(); |
@@ -667,7 +667,7 @@ discard block |
||
| 667 | 667 | $entry_shortcodes = self::get_shortcode_helpers( $settings_tab ); |
| 668 | 668 | |
| 669 | 669 | include( FrmAppHelper::plugin_path() . '/classes/views/shared/mb_adv_info.php' ); |
| 670 | - } |
|
| 670 | + } |
|
| 671 | 671 | |
| 672 | 672 | /** |
| 673 | 673 | * Get an array of the options to display in the advanced tab |
@@ -708,7 +708,7 @@ discard block |
||
| 708 | 708 | '' => '', |
| 709 | 709 | 'siteurl' => __( 'Site URL', 'formidable' ), |
| 710 | 710 | 'sitename' => __( 'Site Name', 'formidable' ), |
| 711 | - ); |
|
| 711 | + ); |
|
| 712 | 712 | |
| 713 | 713 | if ( ! FrmAppHelper::pro_is_installed() ) { |
| 714 | 714 | unset( $entry_shortcodes['post_id'] ); |
@@ -735,39 +735,39 @@ discard block |
||
| 735 | 735 | return $entry_shortcodes; |
| 736 | 736 | } |
| 737 | 737 | |
| 738 | - // Insert the form class setting into the form |
|
| 738 | + // Insert the form class setting into the form |
|
| 739 | 739 | public static function form_classes( $form ) { |
| 740 | - if ( isset($form->options['form_class']) ) { |
|
| 740 | + if ( isset($form->options['form_class']) ) { |
|
| 741 | 741 | echo esc_attr( sanitize_text_field( $form->options['form_class'] ) ); |
| 742 | - } |
|
| 743 | - } |
|
| 742 | + } |
|
| 743 | + } |
|
| 744 | 744 | |
| 745 | - public static function get_email_html() { |
|
| 745 | + public static function get_email_html() { |
|
| 746 | 746 | FrmAppHelper::permission_check('frm_view_forms'); |
| 747 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 747 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 748 | 748 | echo FrmEntryFormat::show_entry( array( |
| 749 | 749 | 'form_id' => FrmAppHelper::get_post_param( 'form_id', '', 'absint' ), |
| 750 | - 'default_email' => true, |
|
| 750 | + 'default_email' => true, |
|
| 751 | 751 | 'plain_text' => FrmAppHelper::get_post_param( 'plain_text', '', 'absint' ), |
| 752 | - ) ); |
|
| 753 | - wp_die(); |
|
| 752 | + ) ); |
|
| 753 | + wp_die(); |
|
| 754 | 754 | } |
| 755 | 755 | |
| 756 | - public static function filter_content( $content, $form, $entry = false ) { |
|
| 756 | + public static function filter_content( $content, $form, $entry = false ) { |
|
| 757 | 757 | self::get_entry_by_param( $entry ); |
| 758 | - if ( ! $entry ) { |
|
| 759 | - return $content; |
|
| 760 | - } |
|
| 758 | + if ( ! $entry ) { |
|
| 759 | + return $content; |
|
| 760 | + } |
|
| 761 | 761 | |
| 762 | - if ( is_object( $form ) ) { |
|
| 763 | - $form = $form->id; |
|
| 764 | - } |
|
| 762 | + if ( is_object( $form ) ) { |
|
| 763 | + $form = $form->id; |
|
| 764 | + } |
|
| 765 | 765 | |
| 766 | - $shortcodes = FrmFieldsHelper::get_shortcodes( $content, $form ); |
|
| 767 | - $content = apply_filters( 'frm_replace_content_shortcodes', $content, $entry, $shortcodes ); |
|
| 766 | + $shortcodes = FrmFieldsHelper::get_shortcodes( $content, $form ); |
|
| 767 | + $content = apply_filters( 'frm_replace_content_shortcodes', $content, $entry, $shortcodes ); |
|
| 768 | 768 | |
| 769 | - return $content; |
|
| 770 | - } |
|
| 769 | + return $content; |
|
| 770 | + } |
|
| 771 | 771 | |
| 772 | 772 | private static function get_entry_by_param( &$entry ) { |
| 773 | 773 | if ( ! $entry || ! is_object( $entry ) ) { |
@@ -779,287 +779,287 @@ discard block |
||
| 779 | 779 | } |
| 780 | 780 | } |
| 781 | 781 | |
| 782 | - public static function replace_content_shortcodes( $content, $entry, $shortcodes ) { |
|
| 783 | - return FrmFieldsHelper::replace_content_shortcodes( $content, $entry, $shortcodes ); |
|
| 784 | - } |
|
| 782 | + public static function replace_content_shortcodes( $content, $entry, $shortcodes ) { |
|
| 783 | + return FrmFieldsHelper::replace_content_shortcodes( $content, $entry, $shortcodes ); |
|
| 784 | + } |
|
| 785 | 785 | |
| 786 | - public static function process_bulk_form_actions( $errors ) { |
|
| 787 | - if ( ! $_REQUEST ) { |
|
| 788 | - return $errors; |
|
| 789 | - } |
|
| 786 | + public static function process_bulk_form_actions( $errors ) { |
|
| 787 | + if ( ! $_REQUEST ) { |
|
| 788 | + return $errors; |
|
| 789 | + } |
|
| 790 | 790 | |
| 791 | 791 | $bulkaction = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' ); |
| 792 | - if ( $bulkaction == -1 ) { |
|
| 792 | + if ( $bulkaction == -1 ) { |
|
| 793 | 793 | $bulkaction = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' ); |
| 794 | - } |
|
| 795 | - |
|
| 796 | - if ( ! empty( $bulkaction ) && strpos( $bulkaction, 'bulk_' ) === 0 ) { |
|
| 797 | - FrmAppHelper::remove_get_action(); |
|
| 798 | - |
|
| 799 | - $bulkaction = str_replace( 'bulk_', '', $bulkaction ); |
|
| 800 | - } |
|
| 801 | - |
|
| 802 | - $ids = FrmAppHelper::get_param( 'item-action', '' ); |
|
| 803 | - if ( empty( $ids ) ) { |
|
| 804 | - $errors[] = __( 'No forms were specified', 'formidable' ); |
|
| 805 | - return $errors; |
|
| 806 | - } |
|
| 807 | - |
|
| 808 | - $permission_error = FrmAppHelper::permission_nonce_error( '', '_wpnonce', 'bulk-toplevel_page_formidable' ); |
|
| 809 | - if ( $permission_error !== false ) { |
|
| 810 | - $errors[] = $permission_error; |
|
| 811 | - return $errors; |
|
| 812 | - } |
|
| 813 | - |
|
| 814 | - if ( ! is_array( $ids ) ) { |
|
| 815 | - $ids = explode( ',', $ids ); |
|
| 816 | - } |
|
| 817 | - |
|
| 818 | - switch ( $bulkaction ) { |
|
| 819 | - case 'delete': |
|
| 820 | - $message = self::bulk_destroy( $ids ); |
|
| 821 | - break; |
|
| 822 | - case 'trash': |
|
| 823 | - $message = self::bulk_trash( $ids ); |
|
| 824 | - break; |
|
| 825 | - case 'untrash': |
|
| 826 | - $message = self::bulk_untrash( $ids ); |
|
| 827 | - break; |
|
| 828 | - case 'create_template': |
|
| 829 | - $message = self::bulk_create_template( $ids ); |
|
| 830 | - break; |
|
| 831 | - } |
|
| 832 | - |
|
| 833 | - if ( isset( $message ) && ! empty( $message ) ) { |
|
| 794 | + } |
|
| 795 | + |
|
| 796 | + if ( ! empty( $bulkaction ) && strpos( $bulkaction, 'bulk_' ) === 0 ) { |
|
| 797 | + FrmAppHelper::remove_get_action(); |
|
| 798 | + |
|
| 799 | + $bulkaction = str_replace( 'bulk_', '', $bulkaction ); |
|
| 800 | + } |
|
| 801 | + |
|
| 802 | + $ids = FrmAppHelper::get_param( 'item-action', '' ); |
|
| 803 | + if ( empty( $ids ) ) { |
|
| 804 | + $errors[] = __( 'No forms were specified', 'formidable' ); |
|
| 805 | + return $errors; |
|
| 806 | + } |
|
| 807 | + |
|
| 808 | + $permission_error = FrmAppHelper::permission_nonce_error( '', '_wpnonce', 'bulk-toplevel_page_formidable' ); |
|
| 809 | + if ( $permission_error !== false ) { |
|
| 810 | + $errors[] = $permission_error; |
|
| 811 | + return $errors; |
|
| 812 | + } |
|
| 813 | + |
|
| 814 | + if ( ! is_array( $ids ) ) { |
|
| 815 | + $ids = explode( ',', $ids ); |
|
| 816 | + } |
|
| 817 | + |
|
| 818 | + switch ( $bulkaction ) { |
|
| 819 | + case 'delete': |
|
| 820 | + $message = self::bulk_destroy( $ids ); |
|
| 821 | + break; |
|
| 822 | + case 'trash': |
|
| 823 | + $message = self::bulk_trash( $ids ); |
|
| 824 | + break; |
|
| 825 | + case 'untrash': |
|
| 826 | + $message = self::bulk_untrash( $ids ); |
|
| 827 | + break; |
|
| 828 | + case 'create_template': |
|
| 829 | + $message = self::bulk_create_template( $ids ); |
|
| 830 | + break; |
|
| 831 | + } |
|
| 832 | + |
|
| 833 | + if ( isset( $message ) && ! empty( $message ) ) { |
|
| 834 | 834 | echo '<div id="message" class="updated frm_msg_padding">' . FrmAppHelper::kses( $message ) . '</div>'; |
| 835 | - } |
|
| 835 | + } |
|
| 836 | 836 | |
| 837 | - return $errors; |
|
| 838 | - } |
|
| 837 | + return $errors; |
|
| 838 | + } |
|
| 839 | 839 | |
| 840 | - public static function add_default_templates( $path, $default = true, $template = true ) { |
|
| 841 | - _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' ); |
|
| 840 | + public static function add_default_templates( $path, $default = true, $template = true ) { |
|
| 841 | + _deprecated_function( __FUNCTION__, '1.07.05', 'FrmXMLController::add_default_templates()' ); |
|
| 842 | 842 | |
| 843 | - $path = untrailingslashit(trim($path)); |
|
| 843 | + $path = untrailingslashit(trim($path)); |
|
| 844 | 844 | $templates = glob( $path . '/*.php' ); |
| 845 | 845 | |
| 846 | 846 | for ( $i = count( $templates ) - 1; $i >= 0; $i-- ) { |
| 847 | 847 | $filename = str_replace( '.php', '', str_replace( $path . '/', '', $templates[ $i ] ) ); |
| 848 | 848 | $template_query = array( 'form_key' => $filename ); |
| 849 | - if ( $template ) { |
|
| 850 | - $template_query['is_template'] = 1; |
|
| 851 | - } |
|
| 852 | - if ( $default ) { |
|
| 853 | - $template_query['default_template'] = 1; |
|
| 854 | - } |
|
| 849 | + if ( $template ) { |
|
| 850 | + $template_query['is_template'] = 1; |
|
| 851 | + } |
|
| 852 | + if ( $default ) { |
|
| 853 | + $template_query['default_template'] = 1; |
|
| 854 | + } |
|
| 855 | 855 | $form = FrmForm::getAll( $template_query, '', 1 ); |
| 856 | 856 | |
| 857 | - $values = FrmFormsHelper::setup_new_vars(); |
|
| 858 | - $values['form_key'] = $filename; |
|
| 859 | - $values['is_template'] = $template; |
|
| 860 | - $values['status'] = 'published'; |
|
| 861 | - if ( $default ) { |
|
| 862 | - $values['default_template'] = 1; |
|
| 863 | - } |
|
| 864 | - |
|
| 865 | - include( $templates[ $i ] ); |
|
| 866 | - |
|
| 867 | - //get updated form |
|
| 868 | - if ( isset($form) && ! empty($form) ) { |
|
| 869 | - $old_id = $form->id; |
|
| 870 | - $form = FrmForm::getOne($form->id); |
|
| 871 | - } else { |
|
| 872 | - $old_id = false; |
|
| 857 | + $values = FrmFormsHelper::setup_new_vars(); |
|
| 858 | + $values['form_key'] = $filename; |
|
| 859 | + $values['is_template'] = $template; |
|
| 860 | + $values['status'] = 'published'; |
|
| 861 | + if ( $default ) { |
|
| 862 | + $values['default_template'] = 1; |
|
| 863 | + } |
|
| 864 | + |
|
| 865 | + include( $templates[ $i ] ); |
|
| 866 | + |
|
| 867 | + //get updated form |
|
| 868 | + if ( isset($form) && ! empty($form) ) { |
|
| 869 | + $old_id = $form->id; |
|
| 870 | + $form = FrmForm::getOne($form->id); |
|
| 871 | + } else { |
|
| 872 | + $old_id = false; |
|
| 873 | 873 | $form = FrmForm::getAll( $template_query, '', 1 ); |
| 874 | - } |
|
| 874 | + } |
|
| 875 | 875 | |
| 876 | - if ( $form ) { |
|
| 876 | + if ( $form ) { |
|
| 877 | 877 | do_action( 'frm_after_duplicate_form', $form->id, (array) $form, array( 'old_id' => $old_id ) ); |
| 878 | - } |
|
| 879 | - } |
|
| 880 | - } |
|
| 878 | + } |
|
| 879 | + } |
|
| 880 | + } |
|
| 881 | 881 | |
| 882 | - public static function route() { |
|
| 883 | - $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 884 | - $vars = array(); |
|
| 882 | + public static function route() { |
|
| 883 | + $action = isset($_REQUEST['frm_action']) ? 'frm_action' : 'action'; |
|
| 884 | + $vars = array(); |
|
| 885 | 885 | if ( isset( $_POST['frm_compact_fields'] ) ) { |
| 886 | 886 | FrmAppHelper::permission_check( 'frm_edit_forms' ); |
| 887 | 887 | |
| 888 | - $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('"', '\\\"', $_POST['frm_compact_fields'] )))); |
|
| 889 | - $json_vars = json_decode($json_vars, true); |
|
| 890 | - if ( empty($json_vars) ) { |
|
| 891 | - // json decoding failed so we should return an error message |
|
| 888 | + $json_vars = htmlspecialchars_decode(nl2br(stripslashes(str_replace('"', '\\\"', $_POST['frm_compact_fields'] )))); |
|
| 889 | + $json_vars = json_decode($json_vars, true); |
|
| 890 | + if ( empty($json_vars) ) { |
|
| 891 | + // json decoding failed so we should return an error message |
|
| 892 | 892 | $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); |
| 893 | - if ( 'edit' == $action ) { |
|
| 894 | - $action = 'update'; |
|
| 895 | - } |
|
| 896 | - |
|
| 897 | - add_filter('frm_validate_form', 'FrmFormsController::json_error'); |
|
| 898 | - } else { |
|
| 899 | - $vars = FrmAppHelper::json_to_array($json_vars); |
|
| 900 | - $action = $vars[ $action ]; |
|
| 893 | + if ( 'edit' == $action ) { |
|
| 894 | + $action = 'update'; |
|
| 895 | + } |
|
| 896 | + |
|
| 897 | + add_filter('frm_validate_form', 'FrmFormsController::json_error'); |
|
| 898 | + } else { |
|
| 899 | + $vars = FrmAppHelper::json_to_array($json_vars); |
|
| 900 | + $action = $vars[ $action ]; |
|
| 901 | 901 | unset( $_REQUEST['frm_compact_fields'], $_POST['frm_compact_fields'] ); |
| 902 | 902 | $_REQUEST = array_merge( $_REQUEST, $vars ); |
| 903 | 903 | $_POST = array_merge( $_POST, $_REQUEST ); |
| 904 | - } |
|
| 905 | - } else { |
|
| 904 | + } |
|
| 905 | + } else { |
|
| 906 | 906 | $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); |
| 907 | - if ( isset( $_REQUEST['delete_all'] ) ) { |
|
| 908 | - // override the action for this page |
|
| 909 | - $action = 'delete_all'; |
|
| 910 | - } |
|
| 911 | - } |
|
| 907 | + if ( isset( $_REQUEST['delete_all'] ) ) { |
|
| 908 | + // override the action for this page |
|
| 909 | + $action = 'delete_all'; |
|
| 910 | + } |
|
| 911 | + } |
|
| 912 | 912 | |
| 913 | 913 | add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' ); |
| 914 | - FrmAppHelper::trigger_hook_load( 'form' ); |
|
| 915 | - |
|
| 916 | - switch ( $action ) { |
|
| 917 | - case 'new': |
|
| 918 | - return self::new_form($vars); |
|
| 919 | - case 'create': |
|
| 920 | - case 'edit': |
|
| 921 | - case 'update': |
|
| 922 | - case 'duplicate': |
|
| 923 | - case 'trash': |
|
| 924 | - case 'untrash': |
|
| 925 | - case 'destroy': |
|
| 926 | - case 'delete_all': |
|
| 927 | - case 'settings': |
|
| 928 | - case 'update_settings': |
|
| 914 | + FrmAppHelper::trigger_hook_load( 'form' ); |
|
| 915 | + |
|
| 916 | + switch ( $action ) { |
|
| 917 | + case 'new': |
|
| 918 | + return self::new_form($vars); |
|
| 919 | + case 'create': |
|
| 920 | + case 'edit': |
|
| 921 | + case 'update': |
|
| 922 | + case 'duplicate': |
|
| 923 | + case 'trash': |
|
| 924 | + case 'untrash': |
|
| 925 | + case 'destroy': |
|
| 926 | + case 'delete_all': |
|
| 927 | + case 'settings': |
|
| 928 | + case 'update_settings': |
|
| 929 | 929 | return self::$action( $vars ); |
| 930 | - default: |
|
| 930 | + default: |
|
| 931 | 931 | do_action( 'frm_form_action_' . $action ); |
| 932 | 932 | if ( apply_filters( 'frm_form_stop_action_' . $action, false ) ) { |
| 933 | - return; |
|
| 934 | - } |
|
| 933 | + return; |
|
| 934 | + } |
|
| 935 | 935 | |
| 936 | 936 | $action = FrmAppHelper::get_param( 'action', '', 'get', 'sanitize_text_field' ); |
| 937 | - if ( $action == -1 ) { |
|
| 937 | + if ( $action == -1 ) { |
|
| 938 | 938 | $action = FrmAppHelper::get_param( 'action2', '', 'get', 'sanitize_title' ); |
| 939 | - } |
|
| 939 | + } |
|
| 940 | 940 | |
| 941 | - if ( strpos($action, 'bulk_') === 0 ) { |
|
| 942 | - FrmAppHelper::remove_get_action(); |
|
| 943 | - return self::list_form(); |
|
| 944 | - } |
|
| 941 | + if ( strpos($action, 'bulk_') === 0 ) { |
|
| 942 | + FrmAppHelper::remove_get_action(); |
|
| 943 | + return self::list_form(); |
|
| 944 | + } |
|
| 945 | 945 | |
| 946 | - return self::display_forms_list(); |
|
| 947 | - } |
|
| 948 | - } |
|
| 946 | + return self::display_forms_list(); |
|
| 947 | + } |
|
| 948 | + } |
|
| 949 | 949 | |
| 950 | - public static function json_error( $errors ) { |
|
| 951 | - $errors['json'] = __( 'Abnormal HTML characters prevented your form from saving correctly', 'formidable' ); |
|
| 952 | - return $errors; |
|
| 953 | - } |
|
| 950 | + public static function json_error( $errors ) { |
|
| 951 | + $errors['json'] = __( 'Abnormal HTML characters prevented your form from saving correctly', 'formidable' ); |
|
| 952 | + return $errors; |
|
| 953 | + } |
|
| 954 | 954 | |
| 955 | 955 | |
| 956 | - /* FRONT-END FORMS */ |
|
| 957 | - public static function admin_bar_css() { |
|
| 956 | + /* FRONT-END FORMS */ |
|
| 957 | + public static function admin_bar_css() { |
|
| 958 | 958 | if ( is_admin() || ! current_user_can( 'frm_edit_forms' ) ) { |
| 959 | - return; |
|
| 960 | - } |
|
| 959 | + return; |
|
| 960 | + } |
|
| 961 | 961 | |
| 962 | 962 | add_action( 'wp_before_admin_bar_render', 'FrmFormsController::admin_bar_configure' ); |
| 963 | 963 | FrmAppHelper::load_font_style(); |
| 964 | 964 | } |
| 965 | 965 | |
| 966 | 966 | public static function admin_bar_configure() { |
| 967 | - global $frm_vars; |
|
| 968 | - if ( empty($frm_vars['forms_loaded']) ) { |
|
| 969 | - return; |
|
| 970 | - } |
|
| 971 | - |
|
| 972 | - $actions = array(); |
|
| 973 | - foreach ( $frm_vars['forms_loaded'] as $form ) { |
|
| 974 | - if ( is_object($form) ) { |
|
| 975 | - $actions[ $form->id ] = $form->name; |
|
| 976 | - } |
|
| 977 | - unset($form); |
|
| 978 | - } |
|
| 979 | - |
|
| 980 | - if ( empty($actions) ) { |
|
| 981 | - return; |
|
| 982 | - } |
|
| 983 | - |
|
| 984 | - asort($actions); |
|
| 985 | - |
|
| 986 | - global $wp_admin_bar; |
|
| 987 | - |
|
| 988 | - if ( count($actions) == 1 ) { |
|
| 989 | - $wp_admin_bar->add_menu( array( |
|
| 990 | - 'title' => 'Edit Form', |
|
| 967 | + global $frm_vars; |
|
| 968 | + if ( empty($frm_vars['forms_loaded']) ) { |
|
| 969 | + return; |
|
| 970 | + } |
|
| 971 | + |
|
| 972 | + $actions = array(); |
|
| 973 | + foreach ( $frm_vars['forms_loaded'] as $form ) { |
|
| 974 | + if ( is_object($form) ) { |
|
| 975 | + $actions[ $form->id ] = $form->name; |
|
| 976 | + } |
|
| 977 | + unset($form); |
|
| 978 | + } |
|
| 979 | + |
|
| 980 | + if ( empty($actions) ) { |
|
| 981 | + return; |
|
| 982 | + } |
|
| 983 | + |
|
| 984 | + asort($actions); |
|
| 985 | + |
|
| 986 | + global $wp_admin_bar; |
|
| 987 | + |
|
| 988 | + if ( count($actions) == 1 ) { |
|
| 989 | + $wp_admin_bar->add_menu( array( |
|
| 990 | + 'title' => 'Edit Form', |
|
| 991 | 991 | 'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ), |
| 992 | - 'id' => 'frm-forms', |
|
| 993 | - ) ); |
|
| 994 | - } else { |
|
| 995 | - $wp_admin_bar->add_menu( array( |
|
| 996 | - 'id' => 'frm-forms', |
|
| 997 | - 'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>', |
|
| 992 | + 'id' => 'frm-forms', |
|
| 993 | + ) ); |
|
| 994 | + } else { |
|
| 995 | + $wp_admin_bar->add_menu( array( |
|
| 996 | + 'id' => 'frm-forms', |
|
| 997 | + 'title' => '<span class="ab-icon"></span><span class="ab-label">' . __( 'Edit Forms', 'formidable' ) . '</span>', |
|
| 998 | 998 | 'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . current( array_keys( $actions ) ) ), |
| 999 | - 'meta' => array( |
|
| 999 | + 'meta' => array( |
|
| 1000 | 1000 | 'title' => __( 'Edit Forms', 'formidable' ), |
| 1001 | - ), |
|
| 1002 | - ) ); |
|
| 1001 | + ), |
|
| 1002 | + ) ); |
|
| 1003 | 1003 | |
| 1004 | - foreach ( $actions as $form_id => $name ) { |
|
| 1004 | + foreach ( $actions as $form_id => $name ) { |
|
| 1005 | 1005 | |
| 1006 | - $wp_admin_bar->add_menu( array( |
|
| 1007 | - 'parent' => 'frm-forms', |
|
| 1006 | + $wp_admin_bar->add_menu( array( |
|
| 1007 | + 'parent' => 'frm-forms', |
|
| 1008 | 1008 | 'id' => 'edit_form_' . $form_id, |
| 1009 | - 'title' => empty($name) ? __( '(no title)') : $name, |
|
| 1009 | + 'title' => empty($name) ? __( '(no title)') : $name, |
|
| 1010 | 1010 | 'href' => admin_url( 'admin.php?page=formidable&frm_action=edit&id=' . $form_id ), |
| 1011 | - ) ); |
|
| 1012 | - } |
|
| 1013 | - } |
|
| 1014 | - } |
|
| 1011 | + ) ); |
|
| 1012 | + } |
|
| 1013 | + } |
|
| 1014 | + } |
|
| 1015 | 1015 | |
| 1016 | - //formidable shortcode |
|
| 1016 | + //formidable shortcode |
|
| 1017 | 1017 | public static function get_form_shortcode( $atts ) { |
| 1018 | - global $frm_vars; |
|
| 1019 | - if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) { |
|
| 1020 | - $sc = '[formidable'; |
|
| 1018 | + global $frm_vars; |
|
| 1019 | + if ( isset($frm_vars['skip_shortcode']) && $frm_vars['skip_shortcode'] ) { |
|
| 1020 | + $sc = '[formidable'; |
|
| 1021 | 1021 | if ( ! empty( $atts ) ) { |
| 1022 | 1022 | foreach ( $atts as $k => $v ) { |
| 1023 | 1023 | $sc .= ' ' . $k . '="' . esc_attr( $v ) . '"'; |
| 1024 | 1024 | } |
| 1025 | 1025 | } |
| 1026 | 1026 | return $sc . ']'; |
| 1027 | - } |
|
| 1028 | - |
|
| 1029 | - $shortcode_atts = shortcode_atts( array( |
|
| 1030 | - 'id' => '', 'key' => '', 'title' => false, 'description' => false, |
|
| 1031 | - 'readonly' => false, 'entry_id' => false, 'fields' => array(), |
|
| 1032 | - 'exclude_fields' => array(), 'minimize' => false, |
|
| 1033 | - ), $atts); |
|
| 1034 | - do_action('formidable_shortcode_atts', $shortcode_atts, $atts); |
|
| 1035 | - |
|
| 1036 | - return self::show_form( |
|
| 1037 | - $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'], |
|
| 1038 | - $shortcode_atts['description'], $atts |
|
| 1039 | - ); |
|
| 1040 | - } |
|
| 1041 | - |
|
| 1042 | - public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) { |
|
| 1043 | - if ( empty( $id ) ) { |
|
| 1044 | - $id = $key; |
|
| 1045 | - } |
|
| 1046 | - |
|
| 1047 | - // no form id or key set |
|
| 1048 | - if ( empty( $id ) ) { |
|
| 1049 | - return __( 'Please select a valid form', 'formidable' ); |
|
| 1050 | - } |
|
| 1051 | - |
|
| 1052 | - $form = FrmForm::getOne( $id ); |
|
| 1053 | - if ( ! $form || $form->parent_form_id || $form->status == 'trash' ) { |
|
| 1054 | - return __( 'Please select a valid form', 'formidable' ); |
|
| 1055 | - } |
|
| 1027 | + } |
|
| 1028 | + |
|
| 1029 | + $shortcode_atts = shortcode_atts( array( |
|
| 1030 | + 'id' => '', 'key' => '', 'title' => false, 'description' => false, |
|
| 1031 | + 'readonly' => false, 'entry_id' => false, 'fields' => array(), |
|
| 1032 | + 'exclude_fields' => array(), 'minimize' => false, |
|
| 1033 | + ), $atts); |
|
| 1034 | + do_action('formidable_shortcode_atts', $shortcode_atts, $atts); |
|
| 1035 | + |
|
| 1036 | + return self::show_form( |
|
| 1037 | + $shortcode_atts['id'], $shortcode_atts['key'], $shortcode_atts['title'], |
|
| 1038 | + $shortcode_atts['description'], $atts |
|
| 1039 | + ); |
|
| 1040 | + } |
|
| 1041 | + |
|
| 1042 | + public static function show_form( $id = '', $key = '', $title = false, $description = false, $atts = array() ) { |
|
| 1043 | + if ( empty( $id ) ) { |
|
| 1044 | + $id = $key; |
|
| 1045 | + } |
|
| 1046 | + |
|
| 1047 | + // no form id or key set |
|
| 1048 | + if ( empty( $id ) ) { |
|
| 1049 | + return __( 'Please select a valid form', 'formidable' ); |
|
| 1050 | + } |
|
| 1051 | + |
|
| 1052 | + $form = FrmForm::getOne( $id ); |
|
| 1053 | + if ( ! $form || $form->parent_form_id || $form->status == 'trash' ) { |
|
| 1054 | + return __( 'Please select a valid form', 'formidable' ); |
|
| 1055 | + } |
|
| 1056 | 1056 | |
| 1057 | 1057 | add_action( 'frm_load_form_hooks', 'FrmHooksController::trigger_load_form_hooks' ); |
| 1058 | - FrmAppHelper::trigger_hook_load( 'form', $form ); |
|
| 1058 | + FrmAppHelper::trigger_hook_load( 'form', $form ); |
|
| 1059 | 1059 | |
| 1060 | - $form = apply_filters( 'frm_pre_display_form', $form ); |
|
| 1060 | + $form = apply_filters( 'frm_pre_display_form', $form ); |
|
| 1061 | 1061 | |
| 1062 | - $frm_settings = FrmAppHelper::get_settings(); |
|
| 1062 | + $frm_settings = FrmAppHelper::get_settings(); |
|
| 1063 | 1063 | |
| 1064 | 1064 | if ( self::is_viewable_draft_form( $form ) ) { |
| 1065 | 1065 | // don't show a draft form on a page |
@@ -1080,7 +1080,7 @@ discard block |
||
| 1080 | 1080 | } |
| 1081 | 1081 | |
| 1082 | 1082 | return $form; |
| 1083 | - } |
|
| 1083 | + } |
|
| 1084 | 1084 | |
| 1085 | 1085 | private static function is_viewable_draft_form( $form ) { |
| 1086 | 1086 | global $post; |
@@ -1096,98 +1096,98 @@ discard block |
||
| 1096 | 1096 | return $form->logged_in && get_current_user_id() && isset( $form->options['logged_in_role'] ) && $form->options['logged_in_role'] != '' && ! FrmAppHelper::user_has_permission( $form->options['logged_in_role'] ); |
| 1097 | 1097 | } |
| 1098 | 1098 | |
| 1099 | - public static function get_form( $form, $title, $description, $atts = array() ) { |
|
| 1100 | - ob_start(); |
|
| 1099 | + public static function get_form( $form, $title, $description, $atts = array() ) { |
|
| 1100 | + ob_start(); |
|
| 1101 | 1101 | |
| 1102 | - self::get_form_contents( $form, $title, $description, $atts ); |
|
| 1102 | + self::get_form_contents( $form, $title, $description, $atts ); |
|
| 1103 | 1103 | self::enqueue_scripts( FrmForm::get_params( $form ) ); |
| 1104 | 1104 | |
| 1105 | - $contents = ob_get_contents(); |
|
| 1106 | - ob_end_clean(); |
|
| 1105 | + $contents = ob_get_contents(); |
|
| 1106 | + ob_end_clean(); |
|
| 1107 | 1107 | |
| 1108 | 1108 | self::maybe_minimize_form( $atts, $contents ); |
| 1109 | 1109 | |
| 1110 | - return $contents; |
|
| 1111 | - } |
|
| 1110 | + return $contents; |
|
| 1111 | + } |
|
| 1112 | 1112 | |
| 1113 | 1113 | public static function enqueue_scripts( $params ) { |
| 1114 | 1114 | do_action( 'frm_enqueue_form_scripts', $params ); |
| 1115 | 1115 | } |
| 1116 | 1116 | |
| 1117 | 1117 | public static function get_form_contents( $form, $title, $description, $atts ) { |
| 1118 | - global $frm_vars; |
|
| 1118 | + global $frm_vars; |
|
| 1119 | 1119 | |
| 1120 | - $frm_settings = FrmAppHelper::get_settings(); |
|
| 1120 | + $frm_settings = FrmAppHelper::get_settings(); |
|
| 1121 | 1121 | |
| 1122 | - $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value; |
|
| 1122 | + $submit = isset($form->options['submit_value']) ? $form->options['submit_value'] : $frm_settings->submit_value; |
|
| 1123 | 1123 | |
| 1124 | - $user_ID = get_current_user_id(); |
|
| 1124 | + $user_ID = get_current_user_id(); |
|
| 1125 | 1125 | $params = FrmForm::get_params( $form ); |
| 1126 | - $message = $errors = ''; |
|
| 1126 | + $message = $errors = ''; |
|
| 1127 | 1127 | |
| 1128 | - if ( $params['posted_form_id'] == $form->id && $_POST ) { |
|
| 1129 | - $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array(); |
|
| 1130 | - } |
|
| 1128 | + if ( $params['posted_form_id'] == $form->id && $_POST ) { |
|
| 1129 | + $errors = isset( $frm_vars['created_entries'][ $form->id ] ) ? $frm_vars['created_entries'][ $form->id ]['errors'] : array(); |
|
| 1130 | + } |
|
| 1131 | 1131 | |
| 1132 | 1132 | $include_form_tag = apply_filters( 'frm_include_form_tag', true, $form ); |
| 1133 | - $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) ); |
|
| 1133 | + $fields = FrmFieldsHelper::get_form_fields( $form->id, ( isset( $errors ) && ! empty( $errors ) ) ); |
|
| 1134 | 1134 | |
| 1135 | - if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) { |
|
| 1136 | - do_action('frm_display_form_action', $params, $fields, $form, $title, $description); |
|
| 1137 | - if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) { |
|
| 1138 | - $values = FrmEntriesHelper::setup_new_vars($fields, $form); |
|
| 1135 | + if ( $params['action'] != 'create' || $params['posted_form_id'] != $form->id || ! $_POST ) { |
|
| 1136 | + do_action('frm_display_form_action', $params, $fields, $form, $title, $description); |
|
| 1137 | + if ( apply_filters('frm_continue_to_new', true, $form->id, $params['action']) ) { |
|
| 1138 | + $values = FrmEntriesHelper::setup_new_vars($fields, $form); |
|
| 1139 | 1139 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1140 | - } |
|
| 1141 | - return; |
|
| 1142 | - } |
|
| 1140 | + } |
|
| 1141 | + return; |
|
| 1142 | + } |
|
| 1143 | 1143 | |
| 1144 | - if ( ! empty($errors) ) { |
|
| 1145 | - $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array(); |
|
| 1144 | + if ( ! empty($errors) ) { |
|
| 1145 | + $values = $fields ? FrmEntriesHelper::setup_new_vars($fields, $form) : array(); |
|
| 1146 | 1146 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1147 | - return; |
|
| 1148 | - } |
|
| 1147 | + return; |
|
| 1148 | + } |
|
| 1149 | 1149 | |
| 1150 | - do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description); |
|
| 1151 | - if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) { |
|
| 1152 | - return; |
|
| 1153 | - } |
|
| 1150 | + do_action('frm_validate_form_creation', $params, $fields, $form, $title, $description); |
|
| 1151 | + if ( ! apply_filters('frm_continue_to_create', true, $form->id) ) { |
|
| 1152 | + return; |
|
| 1153 | + } |
|
| 1154 | 1154 | |
| 1155 | - $values = FrmEntriesHelper::setup_new_vars($fields, $form, true); |
|
| 1156 | - $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0; |
|
| 1157 | - $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create'); |
|
| 1155 | + $values = FrmEntriesHelper::setup_new_vars($fields, $form, true); |
|
| 1156 | + $created = ( isset( $frm_vars['created_entries'] ) && isset( $frm_vars['created_entries'][ $form->id ] ) ) ? $frm_vars['created_entries'][ $form->id ]['entry_id'] : 0; |
|
| 1157 | + $conf_method = apply_filters('frm_success_filter', 'message', $form, $form->options, 'create'); |
|
| 1158 | 1158 | |
| 1159 | - if ( $created && is_numeric($created) && $conf_method != 'message' ) { |
|
| 1160 | - do_action('frm_success_action', $conf_method, $form, $form->options, $created); |
|
| 1159 | + if ( $created && is_numeric($created) && $conf_method != 'message' ) { |
|
| 1160 | + do_action('frm_success_action', $conf_method, $form, $form->options, $created); |
|
| 1161 | 1161 | do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) ); |
| 1162 | - return; |
|
| 1163 | - } |
|
| 1162 | + return; |
|
| 1163 | + } |
|
| 1164 | 1164 | |
| 1165 | - if ( $created && is_numeric($created) ) { |
|
| 1166 | - $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg; |
|
| 1167 | - $class = 'frm_message'; |
|
| 1168 | - } else { |
|
| 1169 | - $message = $frm_settings->failed_msg; |
|
| 1170 | - $class = 'frm_error_style'; |
|
| 1171 | - } |
|
| 1165 | + if ( $created && is_numeric($created) ) { |
|
| 1166 | + $message = isset($form->options['success_msg']) ? $form->options['success_msg'] : $frm_settings->success_msg; |
|
| 1167 | + $class = 'frm_message'; |
|
| 1168 | + } else { |
|
| 1169 | + $message = $frm_settings->failed_msg; |
|
| 1170 | + $class = 'frm_error_style'; |
|
| 1171 | + } |
|
| 1172 | 1172 | |
| 1173 | 1173 | $message = FrmFormsHelper::get_success_message( array( |
| 1174 | 1174 | 'message' => $message, 'form' => $form, |
| 1175 | 1175 | 'entry_id' => $created, 'class' => $class, |
| 1176 | 1176 | ) ); |
| 1177 | - $message = apply_filters('frm_main_feedback', $message, $form, $created); |
|
| 1177 | + $message = apply_filters('frm_main_feedback', $message, $form, $created); |
|
| 1178 | 1178 | |
| 1179 | - if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) { |
|
| 1179 | + if ( ! isset($form->options['show_form']) || $form->options['show_form'] ) { |
|
| 1180 | 1180 | require( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/new.php' ); |
| 1181 | - } else { |
|
| 1182 | - global $frm_vars; |
|
| 1181 | + } else { |
|
| 1182 | + global $frm_vars; |
|
| 1183 | 1183 | self::maybe_load_css( $form, $values['custom_style'], $frm_vars['load_css'] ); |
| 1184 | 1184 | |
| 1185 | 1185 | $include_extra_container = 'frm_forms' . FrmFormsHelper::get_form_style_class( $values ); |
| 1186 | 1186 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-entries/errors.php' ); |
| 1187 | - } |
|
| 1187 | + } |
|
| 1188 | 1188 | |
| 1189 | 1189 | do_action( 'frm_after_entry_processed', array( 'entry_id' => $created, 'form' => $form ) ); |
| 1190 | - } |
|
| 1190 | + } |
|
| 1191 | 1191 | |
| 1192 | 1192 | public static function front_head() { |
| 1193 | 1193 | $version = FrmAppHelper::plugin_version(); |
@@ -1216,10 +1216,10 @@ discard block |
||
| 1216 | 1216 | } |
| 1217 | 1217 | |
| 1218 | 1218 | public static function defer_script_loading( $tag, $handle ) { |
| 1219 | - if ( 'recaptcha-api' == $handle && ! strpos( $tag, 'defer' ) ) { |
|
| 1220 | - $tag = str_replace( ' src', ' defer="defer" async="async" src', $tag ); |
|
| 1219 | + if ( 'recaptcha-api' == $handle && ! strpos( $tag, 'defer' ) ) { |
|
| 1220 | + $tag = str_replace( ' src', ' defer="defer" async="async" src', $tag ); |
|
| 1221 | 1221 | } |
| 1222 | - return $tag; |
|
| 1222 | + return $tag; |
|
| 1223 | 1223 | } |
| 1224 | 1224 | |
| 1225 | 1225 | public static function footer_js( $location = 'footer' ) { |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | $keyed_addons = array(); |
| 41 | 41 | foreach ( $addons as $addon ) { |
| 42 | - $keyed_addons[ $addon['info']['slug'] ] = $addon; |
|
| 42 | + $keyed_addons[$addon['info']['slug']] = $addon; |
|
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | $plugin_order = array( |
@@ -49,9 +49,9 @@ discard block |
||
| 49 | 49 | ); |
| 50 | 50 | $ordered_addons = array(); |
| 51 | 51 | foreach ( $plugin_order as $plugin ) { |
| 52 | - if ( isset( $keyed_addons[ $plugin ] ) ) { |
|
| 53 | - $ordered_addons[] = $keyed_addons[ $plugin ]; |
|
| 54 | - unset( $keyed_addons[ $plugin ] ); |
|
| 52 | + if ( isset( $keyed_addons[$plugin] ) ) { |
|
| 53 | + $ordered_addons[] = $keyed_addons[$plugin]; |
|
| 54 | + unset( $keyed_addons[$plugin] ); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | $addons = $ordered_addons + $keyed_addons; |
@@ -86,10 +86,10 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | public static function get_licenses() { |
| 89 | - FrmAppHelper::permission_check('frm_change_settings'); |
|
| 89 | + FrmAppHelper::permission_check( 'frm_change_settings' ); |
|
| 90 | 90 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 91 | 91 | |
| 92 | - $license = get_option('frmpro-credentials'); |
|
| 92 | + $license = get_option( 'frmpro-credentials' ); |
|
| 93 | 93 | if ( $license && is_array( $license ) && isset( $license['license'] ) ) { |
| 94 | 94 | $url = 'http://formidablepro.com/frm-edd-api/licenses?l=' . urlencode( base64_encode( $license['license'] ) ); |
| 95 | 95 | $licenses = self::send_api_request( $url, array( 'name' => 'frm_api_licence', 'expires' => 60 * 60 * 5 ) ); |
@@ -2,110 +2,110 @@ discard block |
||
| 2 | 2 | |
| 3 | 3 | class FrmXMLController { |
| 4 | 4 | |
| 5 | - public static function menu() { |
|
| 5 | + public static function menu() { |
|
| 6 | 6 | add_submenu_page( 'formidable', 'Formidable | ' . __( 'Import/Export', 'formidable' ), __( 'Import/Export', 'formidable' ), 'frm_edit_forms', 'formidable-import', 'FrmXMLController::route' ); |
| 7 | - } |
|
| 7 | + } |
|
| 8 | 8 | |
| 9 | - public static function add_default_templates() { |
|
| 9 | + public static function add_default_templates() { |
|
| 10 | 10 | if ( ! function_exists( 'libxml_disable_entity_loader' ) ) { |
| 11 | - // XML import is not enabled on your server |
|
| 12 | - return; |
|
| 13 | - } |
|
| 11 | + // XML import is not enabled on your server |
|
| 12 | + return; |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | - $set_err = libxml_use_internal_errors(true); |
|
| 16 | - $loader = libxml_disable_entity_loader( true ); |
|
| 15 | + $set_err = libxml_use_internal_errors(true); |
|
| 16 | + $loader = libxml_disable_entity_loader( true ); |
|
| 17 | 17 | |
| 18 | 18 | $files = apply_filters( 'frm_default_templates_files', array( FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml' ) ); |
| 19 | 19 | |
| 20 | - foreach ( (array) $files as $file ) { |
|
| 21 | - FrmXMLHelper::import_xml($file); |
|
| 22 | - unset($file); |
|
| 23 | - } |
|
| 24 | - /* |
|
| 20 | + foreach ( (array) $files as $file ) { |
|
| 21 | + FrmXMLHelper::import_xml($file); |
|
| 22 | + unset($file); |
|
| 23 | + } |
|
| 24 | + /* |
|
| 25 | 25 | if(is_wp_error($result)) |
| 26 | 26 | $errors[] = $result->get_error_message(); |
| 27 | 27 | else if($result) |
| 28 | 28 | $message = $result; |
| 29 | 29 | */ |
| 30 | 30 | |
| 31 | - unset( $files ); |
|
| 31 | + unset( $files ); |
|
| 32 | 32 | |
| 33 | - libxml_use_internal_errors( $set_err ); |
|
| 34 | - libxml_disable_entity_loader( $loader ); |
|
| 35 | - } |
|
| 33 | + libxml_use_internal_errors( $set_err ); |
|
| 34 | + libxml_disable_entity_loader( $loader ); |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - public static function route() { |
|
| 38 | - $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
| 37 | + public static function route() { |
|
| 38 | + $action = isset( $_REQUEST['frm_action'] ) ? 'frm_action' : 'action'; |
|
| 39 | 39 | $action = FrmAppHelper::get_param( $action, '', 'get', 'sanitize_title' ); |
| 40 | 40 | if ( $action == 'import_xml' ) { |
| 41 | - return self::import_xml(); |
|
| 41 | + return self::import_xml(); |
|
| 42 | 42 | } else if ( $action == 'export_xml' ) { |
| 43 | - return self::export_xml(); |
|
| 44 | - } else { |
|
| 45 | - if ( apply_filters( 'frm_xml_route', true, $action ) ) { |
|
| 46 | - return self::form(); |
|
| 47 | - } |
|
| 48 | - } |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - public static function form( $errors = array(), $message = '' ) { |
|
| 43 | + return self::export_xml(); |
|
| 44 | + } else { |
|
| 45 | + if ( apply_filters( 'frm_xml_route', true, $action ) ) { |
|
| 46 | + return self::form(); |
|
| 47 | + } |
|
| 48 | + } |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + public static function form( $errors = array(), $message = '' ) { |
|
| 52 | 52 | $where = array( |
| 53 | 53 | 'parent_form_id' => array( null, 0 ), |
| 54 | 54 | 'status' => array( null, '', 'published' ), |
| 55 | 55 | ); |
| 56 | 56 | $forms = FrmForm::getAll( $where, 'name' ); |
| 57 | 57 | |
| 58 | - $export_types = apply_filters( 'frm_xml_export_types', |
|
| 59 | - array( 'forms' => __( 'Forms', 'formidable' ), 'items' => __( 'Entries', 'formidable' ) ) |
|
| 60 | - ); |
|
| 58 | + $export_types = apply_filters( 'frm_xml_export_types', |
|
| 59 | + array( 'forms' => __( 'Forms', 'formidable' ), 'items' => __( 'Entries', 'formidable' ) ) |
|
| 60 | + ); |
|
| 61 | 61 | |
| 62 | - $export_format = apply_filters( 'frm_export_formats', array( |
|
| 63 | - 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple' ), |
|
| 62 | + $export_format = apply_filters( 'frm_export_formats', array( |
|
| 63 | + 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple' ), |
|
| 64 | 64 | 'csv' => array( 'name' => 'CSV', 'support' => 'items', 'count' => 'single' ), |
| 65 | - ) ); |
|
| 65 | + ) ); |
|
| 66 | 66 | |
| 67 | 67 | include( FrmAppHelper::plugin_path() . '/classes/views/xml/import_form.php' ); |
| 68 | - } |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - public static function import_xml() { |
|
| 71 | - $errors = array(); |
|
| 72 | - $message = ''; |
|
| 70 | + public static function import_xml() { |
|
| 71 | + $errors = array(); |
|
| 72 | + $message = ''; |
|
| 73 | 73 | |
| 74 | - $permission_error = FrmAppHelper::permission_nonce_error('frm_edit_forms', 'import-xml', 'import-xml-nonce'); |
|
| 75 | - if ( $permission_error !== false ) { |
|
| 76 | - $errors[] = $permission_error; |
|
| 77 | - self::form($errors); |
|
| 78 | - return; |
|
| 79 | - } |
|
| 74 | + $permission_error = FrmAppHelper::permission_nonce_error('frm_edit_forms', 'import-xml', 'import-xml-nonce'); |
|
| 75 | + if ( $permission_error !== false ) { |
|
| 76 | + $errors[] = $permission_error; |
|
| 77 | + self::form($errors); |
|
| 78 | + return; |
|
| 79 | + } |
|
| 80 | 80 | |
| 81 | - if ( ! isset($_FILES) || ! isset($_FILES['frm_import_file']) || empty($_FILES['frm_import_file']['name']) || (int) $_FILES['frm_import_file']['size'] < 1 ) { |
|
| 82 | - $errors[] = __( 'Oops, you didn\'t select a file.', 'formidable' ); |
|
| 83 | - self::form($errors); |
|
| 84 | - return; |
|
| 85 | - } |
|
| 81 | + if ( ! isset($_FILES) || ! isset($_FILES['frm_import_file']) || empty($_FILES['frm_import_file']['name']) || (int) $_FILES['frm_import_file']['size'] < 1 ) { |
|
| 82 | + $errors[] = __( 'Oops, you didn\'t select a file.', 'formidable' ); |
|
| 83 | + self::form($errors); |
|
| 84 | + return; |
|
| 85 | + } |
|
| 86 | 86 | |
| 87 | - $file = $_FILES['frm_import_file']['tmp_name']; |
|
| 87 | + $file = $_FILES['frm_import_file']['tmp_name']; |
|
| 88 | 88 | |
| 89 | - if ( ! is_uploaded_file( $file ) ) { |
|
| 90 | - unset($file); |
|
| 91 | - $errors[] = __( 'The file does not exist, please try again.', 'formidable' ); |
|
| 92 | - self::form($errors); |
|
| 93 | - return; |
|
| 94 | - } |
|
| 89 | + if ( ! is_uploaded_file( $file ) ) { |
|
| 90 | + unset($file); |
|
| 91 | + $errors[] = __( 'The file does not exist, please try again.', 'formidable' ); |
|
| 92 | + self::form($errors); |
|
| 93 | + return; |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - //add_filter('upload_mimes', 'FrmXMLController::allow_mime'); |
|
| 96 | + //add_filter('upload_mimes', 'FrmXMLController::allow_mime'); |
|
| 97 | 97 | |
| 98 | - $export_format = apply_filters('frm_export_formats', array( |
|
| 98 | + $export_format = apply_filters('frm_export_formats', array( |
|
| 99 | 99 | 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple' ), |
| 100 | 100 | ) ); |
| 101 | 101 | |
| 102 | - $file_type = strtolower(pathinfo($_FILES['frm_import_file']['name'], PATHINFO_EXTENSION)); |
|
| 103 | - if ( $file_type != 'xml' && isset( $export_format[ $file_type ] ) ) { |
|
| 104 | - // allow other file types to be imported |
|
| 102 | + $file_type = strtolower(pathinfo($_FILES['frm_import_file']['name'], PATHINFO_EXTENSION)); |
|
| 103 | + if ( $file_type != 'xml' && isset( $export_format[ $file_type ] ) ) { |
|
| 104 | + // allow other file types to be imported |
|
| 105 | 105 | do_action( 'frm_before_import_' . $file_type ); |
| 106 | - return; |
|
| 107 | - } |
|
| 108 | - unset($file_type); |
|
| 106 | + return; |
|
| 107 | + } |
|
| 108 | + unset($file_type); |
|
| 109 | 109 | |
| 110 | 110 | if ( ! function_exists( 'libxml_disable_entity_loader' ) ) { |
| 111 | 111 | $errors[] = __( 'XML import is not enabled on your server.', 'formidable' ); |
@@ -124,148 +124,148 @@ discard block |
||
| 124 | 124 | libxml_use_internal_errors( $set_err ); |
| 125 | 125 | libxml_disable_entity_loader( $loader ); |
| 126 | 126 | |
| 127 | - self::form($errors, $message); |
|
| 128 | - } |
|
| 127 | + self::form($errors, $message); |
|
| 128 | + } |
|
| 129 | 129 | |
| 130 | - public static function export_xml() { |
|
| 131 | - $error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'export-xml', 'export-xml-nonce' ); |
|
| 132 | - if ( ! empty($error) ) { |
|
| 133 | - wp_die( $error ); |
|
| 134 | - } |
|
| 130 | + public static function export_xml() { |
|
| 131 | + $error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'export-xml', 'export-xml-nonce' ); |
|
| 132 | + if ( ! empty($error) ) { |
|
| 133 | + wp_die( $error ); |
|
| 134 | + } |
|
| 135 | 135 | |
| 136 | 136 | $ids = FrmAppHelper::get_post_param( 'frm_export_forms', array() ); |
| 137 | 137 | $type = FrmAppHelper::get_post_param( 'type', array() ); |
| 138 | 138 | $format = FrmAppHelper::get_post_param( 'format', 'xml', 'sanitize_title' ); |
| 139 | 139 | |
| 140 | - if ( ! headers_sent() && ! $type ) { |
|
| 141 | - wp_redirect( esc_url_raw( admin_url( 'admin.php?page=formidable-import' ) ) ); |
|
| 142 | - die(); |
|
| 143 | - } |
|
| 140 | + if ( ! headers_sent() && ! $type ) { |
|
| 141 | + wp_redirect( esc_url_raw( admin_url( 'admin.php?page=formidable-import' ) ) ); |
|
| 142 | + die(); |
|
| 143 | + } |
|
| 144 | 144 | |
| 145 | - if ( $format == 'xml' ) { |
|
| 146 | - self::generate_xml($type, compact('ids')); |
|
| 145 | + if ( $format == 'xml' ) { |
|
| 146 | + self::generate_xml($type, compact('ids')); |
|
| 147 | 147 | } if ( $format == 'csv' ) { |
| 148 | 148 | self::generate_csv( compact('ids') ); |
| 149 | - } else { |
|
| 149 | + } else { |
|
| 150 | 150 | do_action( 'frm_export_format_' . $format, compact('ids') ); |
| 151 | - } |
|
| 151 | + } |
|
| 152 | 152 | |
| 153 | - wp_die(); |
|
| 154 | - } |
|
| 153 | + wp_die(); |
|
| 154 | + } |
|
| 155 | 155 | |
| 156 | 156 | public static function generate_xml( $type, $args = array() ) { |
| 157 | - global $wpdb; |
|
| 157 | + global $wpdb; |
|
| 158 | 158 | |
| 159 | - $type = (array) $type; |
|
| 160 | - if ( in_array( 'items', $type) && ! in_array( 'forms', $type) ) { |
|
| 161 | - // make sure the form is included if there are entries |
|
| 162 | - $type[] = 'forms'; |
|
| 163 | - } |
|
| 159 | + $type = (array) $type; |
|
| 160 | + if ( in_array( 'items', $type) && ! in_array( 'forms', $type) ) { |
|
| 161 | + // make sure the form is included if there are entries |
|
| 162 | + $type[] = 'forms'; |
|
| 163 | + } |
|
| 164 | 164 | |
| 165 | - if ( in_array( 'forms', $type) ) { |
|
| 166 | - // include actions with forms |
|
| 167 | - $type[] = 'actions'; |
|
| 168 | - } |
|
| 165 | + if ( in_array( 'forms', $type) ) { |
|
| 166 | + // include actions with forms |
|
| 167 | + $type[] = 'actions'; |
|
| 168 | + } |
|
| 169 | 169 | |
| 170 | - $tables = array( |
|
| 170 | + $tables = array( |
|
| 171 | 171 | 'items' => $wpdb->prefix . 'frm_items', |
| 172 | 172 | 'forms' => $wpdb->prefix . 'frm_forms', |
| 173 | - 'posts' => $wpdb->posts, |
|
| 174 | - 'styles' => $wpdb->posts, |
|
| 175 | - 'actions' => $wpdb->posts, |
|
| 176 | - ); |
|
| 173 | + 'posts' => $wpdb->posts, |
|
| 174 | + 'styles' => $wpdb->posts, |
|
| 175 | + 'actions' => $wpdb->posts, |
|
| 176 | + ); |
|
| 177 | 177 | |
| 178 | 178 | $defaults = array( 'ids' => false ); |
| 179 | - $args = wp_parse_args( $args, $defaults ); |
|
| 179 | + $args = wp_parse_args( $args, $defaults ); |
|
| 180 | 180 | |
| 181 | - $sitename = sanitize_key( get_bloginfo( 'name' ) ); |
|
| 181 | + $sitename = sanitize_key( get_bloginfo( 'name' ) ); |
|
| 182 | 182 | |
| 183 | - if ( ! empty( $sitename ) ) { |
|
| 183 | + if ( ! empty( $sitename ) ) { |
|
| 184 | 184 | $sitename .= '.'; |
| 185 | 185 | } |
| 186 | - $filename = $sitename . 'formidable.' . date( 'Y-m-d' ) . '.xml'; |
|
| 186 | + $filename = $sitename . 'formidable.' . date( 'Y-m-d' ) . '.xml'; |
|
| 187 | 187 | |
| 188 | - header( 'Content-Description: File Transfer' ); |
|
| 189 | - header( 'Content-Disposition: attachment; filename=' . $filename ); |
|
| 190 | - header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); |
|
| 188 | + header( 'Content-Description: File Transfer' ); |
|
| 189 | + header( 'Content-Disposition: attachment; filename=' . $filename ); |
|
| 190 | + header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); |
|
| 191 | 191 | |
| 192 | - //make sure ids are numeric |
|
| 193 | - if ( is_array( $args['ids'] ) && ! empty( $args['ids'] ) ) { |
|
| 194 | - $args['ids'] = array_filter( $args['ids'], 'is_numeric' ); |
|
| 195 | - } |
|
| 192 | + //make sure ids are numeric |
|
| 193 | + if ( is_array( $args['ids'] ) && ! empty( $args['ids'] ) ) { |
|
| 194 | + $args['ids'] = array_filter( $args['ids'], 'is_numeric' ); |
|
| 195 | + } |
|
| 196 | 196 | |
| 197 | - $records = array(); |
|
| 197 | + $records = array(); |
|
| 198 | 198 | |
| 199 | 199 | foreach ( $type as $tb_type ) { |
| 200 | - $where = array(); |
|
| 200 | + $where = array(); |
|
| 201 | 201 | $join = ''; |
| 202 | - $table = $tables[ $tb_type ]; |
|
| 202 | + $table = $tables[ $tb_type ]; |
|
| 203 | 203 | |
| 204 | 204 | $select = $table . '.id'; |
| 205 | - $query_vars = array(); |
|
| 205 | + $query_vars = array(); |
|
| 206 | 206 | |
| 207 | - switch ( $tb_type ) { |
|
| 208 | - case 'forms': |
|
| 209 | - //add forms |
|
| 210 | - if ( $args['ids'] ) { |
|
| 207 | + switch ( $tb_type ) { |
|
| 208 | + case 'forms': |
|
| 209 | + //add forms |
|
| 210 | + if ( $args['ids'] ) { |
|
| 211 | 211 | $where[] = array( 'or' => 1, $table . '.id' => $args['ids'], $table . '.parent_form_id' => $args['ids'] ); |
| 212 | - } else { |
|
| 212 | + } else { |
|
| 213 | 213 | $where[ $table . '.status !' ] = 'draft'; |
| 214 | - } |
|
| 215 | - break; |
|
| 216 | - case 'actions': |
|
| 214 | + } |
|
| 215 | + break; |
|
| 216 | + case 'actions': |
|
| 217 | 217 | $select = $table . '.ID'; |
| 218 | 218 | $where['post_type'] = FrmFormActionsController::$action_post_type; |
| 219 | - if ( ! empty($args['ids']) ) { |
|
| 219 | + if ( ! empty($args['ids']) ) { |
|
| 220 | 220 | $where['menu_order'] = $args['ids']; |
| 221 | - } |
|
| 222 | - break; |
|
| 223 | - case 'items': |
|
| 224 | - //$join = "INNER JOIN {$wpdb->prefix}frm_item_metas im ON ($table.id = im.item_id)"; |
|
| 225 | - if ( $args['ids'] ) { |
|
| 221 | + } |
|
| 222 | + break; |
|
| 223 | + case 'items': |
|
| 224 | + //$join = "INNER JOIN {$wpdb->prefix}frm_item_metas im ON ($table.id = im.item_id)"; |
|
| 225 | + if ( $args['ids'] ) { |
|
| 226 | 226 | $where[ $table . '.form_id' ] = $args['ids']; |
| 227 | - } |
|
| 228 | - break; |
|
| 229 | - case 'styles': |
|
| 230 | - // Loop through all exported forms and get their selected style IDs |
|
| 231 | - $form_ids = $args['ids']; |
|
| 232 | - $style_ids = array(); |
|
| 233 | - foreach ( $form_ids as $form_id ) { |
|
| 234 | - $form_data = FrmForm::getOne( $form_id ); |
|
| 235 | - // For forms that have not been updated while running 2.0, check if custom_style is set |
|
| 236 | - if ( isset( $form_data->options['custom_style'] ) ) { |
|
| 237 | - $style_ids[] = $form_data->options['custom_style']; |
|
| 238 | - } |
|
| 239 | - unset( $form_id, $form_data ); |
|
| 240 | - } |
|
| 227 | + } |
|
| 228 | + break; |
|
| 229 | + case 'styles': |
|
| 230 | + // Loop through all exported forms and get their selected style IDs |
|
| 231 | + $form_ids = $args['ids']; |
|
| 232 | + $style_ids = array(); |
|
| 233 | + foreach ( $form_ids as $form_id ) { |
|
| 234 | + $form_data = FrmForm::getOne( $form_id ); |
|
| 235 | + // For forms that have not been updated while running 2.0, check if custom_style is set |
|
| 236 | + if ( isset( $form_data->options['custom_style'] ) ) { |
|
| 237 | + $style_ids[] = $form_data->options['custom_style']; |
|
| 238 | + } |
|
| 239 | + unset( $form_id, $form_data ); |
|
| 240 | + } |
|
| 241 | 241 | $select = $table . '.ID'; |
| 242 | - $where['post_type'] = 'frm_styles'; |
|
| 243 | - |
|
| 244 | - // Only export selected styles |
|
| 245 | - if ( ! empty( $style_ids ) ) { |
|
| 246 | - $where['ID'] = $style_ids; |
|
| 247 | - } |
|
| 248 | - break; |
|
| 249 | - default: |
|
| 242 | + $where['post_type'] = 'frm_styles'; |
|
| 243 | + |
|
| 244 | + // Only export selected styles |
|
| 245 | + if ( ! empty( $style_ids ) ) { |
|
| 246 | + $where['ID'] = $style_ids; |
|
| 247 | + } |
|
| 248 | + break; |
|
| 249 | + default: |
|
| 250 | 250 | $select = $table . '.ID'; |
| 251 | - $join = ' INNER JOIN ' . $wpdb->postmeta . ' pm ON (pm.post_id=' . $table . '.ID)'; |
|
| 252 | - $where['pm.meta_key'] = 'frm_form_id'; |
|
| 253 | - |
|
| 254 | - if ( empty($args['ids']) ) { |
|
| 255 | - $where['pm.meta_value >'] = 1; |
|
| 256 | - } else { |
|
| 257 | - $where['pm.meta_value'] = $args['ids']; |
|
| 258 | - } |
|
| 259 | - break; |
|
| 260 | - } |
|
| 251 | + $join = ' INNER JOIN ' . $wpdb->postmeta . ' pm ON (pm.post_id=' . $table . '.ID)'; |
|
| 252 | + $where['pm.meta_key'] = 'frm_form_id'; |
|
| 253 | + |
|
| 254 | + if ( empty($args['ids']) ) { |
|
| 255 | + $where['pm.meta_value >'] = 1; |
|
| 256 | + } else { |
|
| 257 | + $where['pm.meta_value'] = $args['ids']; |
|
| 258 | + } |
|
| 259 | + break; |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | 262 | $records[ $tb_type ] = FrmDb::get_col( $table . $join, $where, $select ); |
| 263 | - unset($tb_type); |
|
| 264 | - } |
|
| 263 | + unset($tb_type); |
|
| 264 | + } |
|
| 265 | 265 | |
| 266 | 266 | echo '<?xml version="1.0" encoding="' . esc_attr( get_bloginfo('charset') ) . "\" ?>\n"; |
| 267 | 267 | include( FrmAppHelper::plugin_path() . '/classes/views/xml/xml.php' ); |
| 268 | - } |
|
| 268 | + } |
|
| 269 | 269 | |
| 270 | 270 | |
| 271 | 271 | public static function generate_csv( $atts ) { |
@@ -336,14 +336,14 @@ discard block |
||
| 336 | 336 | } |
| 337 | 337 | |
| 338 | 338 | /** |
| 339 | - * Get the fields that should be included in the CSV export |
|
| 340 | - * |
|
| 341 | - * @since 2.0.19 |
|
| 342 | - * |
|
| 343 | - * @param int $form_id |
|
| 344 | - * @param object $form |
|
| 345 | - * @return array $csv_fields |
|
| 346 | - */ |
|
| 339 | + * Get the fields that should be included in the CSV export |
|
| 340 | + * |
|
| 341 | + * @since 2.0.19 |
|
| 342 | + * |
|
| 343 | + * @param int $form_id |
|
| 344 | + * @param object $form |
|
| 345 | + * @return array $csv_fields |
|
| 346 | + */ |
|
| 347 | 347 | private static function get_fields_for_csv_export( $form_id, $form ) { |
| 348 | 348 | // Phase frm_csv_field_ids out by 2.01.05 |
| 349 | 349 | $csv_field_ids = apply_filters( 'frm_csv_field_ids', '', $form_id, array( 'form' => $form ) ); |
@@ -373,16 +373,16 @@ discard block |
||
| 373 | 373 | } |
| 374 | 374 | |
| 375 | 375 | public static function allow_mime( $mimes ) { |
| 376 | - if ( ! isset( $mimes['csv'] ) ) { |
|
| 377 | - // allow csv files |
|
| 378 | - $mimes['csv'] = 'text/csv'; |
|
| 379 | - } |
|
| 380 | - |
|
| 381 | - if ( ! isset( $mimes['xml'] ) ) { |
|
| 382 | - // allow xml |
|
| 383 | - $mimes['xml'] = 'text/xml'; |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - return $mimes; |
|
| 387 | - } |
|
| 376 | + if ( ! isset( $mimes['csv'] ) ) { |
|
| 377 | + // allow csv files |
|
| 378 | + $mimes['csv'] = 'text/csv'; |
|
| 379 | + } |
|
| 380 | + |
|
| 381 | + if ( ! isset( $mimes['xml'] ) ) { |
|
| 382 | + // allow xml |
|
| 383 | + $mimes['xml'] = 'text/xml'; |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + return $mimes; |
|
| 387 | + } |
|
| 388 | 388 | } |
@@ -12,14 +12,14 @@ discard block |
||
| 12 | 12 | return; |
| 13 | 13 | } |
| 14 | 14 | |
| 15 | - $set_err = libxml_use_internal_errors(true); |
|
| 15 | + $set_err = libxml_use_internal_errors( true ); |
|
| 16 | 16 | $loader = libxml_disable_entity_loader( true ); |
| 17 | 17 | |
| 18 | 18 | $files = apply_filters( 'frm_default_templates_files', array( FrmAppHelper::plugin_path() . '/classes/views/xml/default-templates.xml' ) ); |
| 19 | 19 | |
| 20 | 20 | foreach ( (array) $files as $file ) { |
| 21 | - FrmXMLHelper::import_xml($file); |
|
| 22 | - unset($file); |
|
| 21 | + FrmXMLHelper::import_xml( $file ); |
|
| 22 | + unset( $file ); |
|
| 23 | 23 | } |
| 24 | 24 | /* |
| 25 | 25 | if(is_wp_error($result)) |
@@ -71,41 +71,41 @@ discard block |
||
| 71 | 71 | $errors = array(); |
| 72 | 72 | $message = ''; |
| 73 | 73 | |
| 74 | - $permission_error = FrmAppHelper::permission_nonce_error('frm_edit_forms', 'import-xml', 'import-xml-nonce'); |
|
| 74 | + $permission_error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'import-xml', 'import-xml-nonce' ); |
|
| 75 | 75 | if ( $permission_error !== false ) { |
| 76 | 76 | $errors[] = $permission_error; |
| 77 | - self::form($errors); |
|
| 77 | + self::form( $errors ); |
|
| 78 | 78 | return; |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - if ( ! isset($_FILES) || ! isset($_FILES['frm_import_file']) || empty($_FILES['frm_import_file']['name']) || (int) $_FILES['frm_import_file']['size'] < 1 ) { |
|
| 81 | + if ( ! isset( $_FILES ) || ! isset( $_FILES['frm_import_file'] ) || empty( $_FILES['frm_import_file']['name'] ) || (int) $_FILES['frm_import_file']['size'] < 1 ) { |
|
| 82 | 82 | $errors[] = __( 'Oops, you didn\'t select a file.', 'formidable' ); |
| 83 | - self::form($errors); |
|
| 83 | + self::form( $errors ); |
|
| 84 | 84 | return; |
| 85 | 85 | } |
| 86 | 86 | |
| 87 | 87 | $file = $_FILES['frm_import_file']['tmp_name']; |
| 88 | 88 | |
| 89 | 89 | if ( ! is_uploaded_file( $file ) ) { |
| 90 | - unset($file); |
|
| 90 | + unset( $file ); |
|
| 91 | 91 | $errors[] = __( 'The file does not exist, please try again.', 'formidable' ); |
| 92 | - self::form($errors); |
|
| 92 | + self::form( $errors ); |
|
| 93 | 93 | return; |
| 94 | 94 | } |
| 95 | 95 | |
| 96 | 96 | //add_filter('upload_mimes', 'FrmXMLController::allow_mime'); |
| 97 | 97 | |
| 98 | - $export_format = apply_filters('frm_export_formats', array( |
|
| 98 | + $export_format = apply_filters( 'frm_export_formats', array( |
|
| 99 | 99 | 'xml' => array( 'name' => 'XML', 'support' => 'forms', 'count' => 'multiple' ), |
| 100 | 100 | ) ); |
| 101 | 101 | |
| 102 | - $file_type = strtolower(pathinfo($_FILES['frm_import_file']['name'], PATHINFO_EXTENSION)); |
|
| 103 | - if ( $file_type != 'xml' && isset( $export_format[ $file_type ] ) ) { |
|
| 102 | + $file_type = strtolower( pathinfo( $_FILES['frm_import_file']['name'], PATHINFO_EXTENSION ) ); |
|
| 103 | + if ( $file_type != 'xml' && isset( $export_format[$file_type] ) ) { |
|
| 104 | 104 | // allow other file types to be imported |
| 105 | 105 | do_action( 'frm_before_import_' . $file_type ); |
| 106 | 106 | return; |
| 107 | 107 | } |
| 108 | - unset($file_type); |
|
| 108 | + unset( $file_type ); |
|
| 109 | 109 | |
| 110 | 110 | if ( ! function_exists( 'libxml_disable_entity_loader' ) ) { |
| 111 | 111 | $errors[] = __( 'XML import is not enabled on your server.', 'formidable' ); |
@@ -124,12 +124,12 @@ discard block |
||
| 124 | 124 | libxml_use_internal_errors( $set_err ); |
| 125 | 125 | libxml_disable_entity_loader( $loader ); |
| 126 | 126 | |
| 127 | - self::form($errors, $message); |
|
| 127 | + self::form( $errors, $message ); |
|
| 128 | 128 | } |
| 129 | 129 | |
| 130 | 130 | public static function export_xml() { |
| 131 | 131 | $error = FrmAppHelper::permission_nonce_error( 'frm_edit_forms', 'export-xml', 'export-xml-nonce' ); |
| 132 | - if ( ! empty($error) ) { |
|
| 132 | + if ( ! empty( $error ) ) { |
|
| 133 | 133 | wp_die( $error ); |
| 134 | 134 | } |
| 135 | 135 | |
@@ -143,11 +143,11 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | if ( $format == 'xml' ) { |
| 146 | - self::generate_xml($type, compact('ids')); |
|
| 146 | + self::generate_xml( $type, compact( 'ids' ) ); |
|
| 147 | 147 | } if ( $format == 'csv' ) { |
| 148 | - self::generate_csv( compact('ids') ); |
|
| 148 | + self::generate_csv( compact( 'ids' ) ); |
|
| 149 | 149 | } else { |
| 150 | - do_action( 'frm_export_format_' . $format, compact('ids') ); |
|
| 150 | + do_action( 'frm_export_format_' . $format, compact( 'ids' ) ); |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | wp_die(); |
@@ -157,12 +157,12 @@ discard block |
||
| 157 | 157 | global $wpdb; |
| 158 | 158 | |
| 159 | 159 | $type = (array) $type; |
| 160 | - if ( in_array( 'items', $type) && ! in_array( 'forms', $type) ) { |
|
| 160 | + if ( in_array( 'items', $type ) && ! in_array( 'forms', $type ) ) { |
|
| 161 | 161 | // make sure the form is included if there are entries |
| 162 | 162 | $type[] = 'forms'; |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | - if ( in_array( 'forms', $type) ) { |
|
| 165 | + if ( in_array( 'forms', $type ) ) { |
|
| 166 | 166 | // include actions with forms |
| 167 | 167 | $type[] = 'actions'; |
| 168 | 168 | } |
@@ -199,7 +199,7 @@ discard block |
||
| 199 | 199 | foreach ( $type as $tb_type ) { |
| 200 | 200 | $where = array(); |
| 201 | 201 | $join = ''; |
| 202 | - $table = $tables[ $tb_type ]; |
|
| 202 | + $table = $tables[$tb_type]; |
|
| 203 | 203 | |
| 204 | 204 | $select = $table . '.id'; |
| 205 | 205 | $query_vars = array(); |
@@ -210,20 +210,20 @@ discard block |
||
| 210 | 210 | if ( $args['ids'] ) { |
| 211 | 211 | $where[] = array( 'or' => 1, $table . '.id' => $args['ids'], $table . '.parent_form_id' => $args['ids'] ); |
| 212 | 212 | } else { |
| 213 | - $where[ $table . '.status !' ] = 'draft'; |
|
| 213 | + $where[$table . '.status !'] = 'draft'; |
|
| 214 | 214 | } |
| 215 | 215 | break; |
| 216 | 216 | case 'actions': |
| 217 | 217 | $select = $table . '.ID'; |
| 218 | 218 | $where['post_type'] = FrmFormActionsController::$action_post_type; |
| 219 | - if ( ! empty($args['ids']) ) { |
|
| 219 | + if ( ! empty( $args['ids'] ) ) { |
|
| 220 | 220 | $where['menu_order'] = $args['ids']; |
| 221 | 221 | } |
| 222 | 222 | break; |
| 223 | 223 | case 'items': |
| 224 | 224 | //$join = "INNER JOIN {$wpdb->prefix}frm_item_metas im ON ($table.id = im.item_id)"; |
| 225 | 225 | if ( $args['ids'] ) { |
| 226 | - $where[ $table . '.form_id' ] = $args['ids']; |
|
| 226 | + $where[$table . '.form_id'] = $args['ids']; |
|
| 227 | 227 | } |
| 228 | 228 | break; |
| 229 | 229 | case 'styles': |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | $join = ' INNER JOIN ' . $wpdb->postmeta . ' pm ON (pm.post_id=' . $table . '.ID)'; |
| 252 | 252 | $where['pm.meta_key'] = 'frm_form_id'; |
| 253 | 253 | |
| 254 | - if ( empty($args['ids']) ) { |
|
| 254 | + if ( empty( $args['ids'] ) ) { |
|
| 255 | 255 | $where['pm.meta_value >'] = 1; |
| 256 | 256 | } else { |
| 257 | 257 | $where['pm.meta_value'] = $args['ids']; |
@@ -259,11 +259,11 @@ discard block |
||
| 259 | 259 | break; |
| 260 | 260 | } |
| 261 | 261 | |
| 262 | - $records[ $tb_type ] = FrmDb::get_col( $table . $join, $where, $select ); |
|
| 263 | - unset($tb_type); |
|
| 262 | + $records[$tb_type] = FrmDb::get_col( $table . $join, $where, $select ); |
|
| 263 | + unset( $tb_type ); |
|
| 264 | 264 | } |
| 265 | 265 | |
| 266 | - echo '<?xml version="1.0" encoding="' . esc_attr( get_bloginfo('charset') ) . "\" ?>\n"; |
|
| 266 | + echo '<?xml version="1.0" encoding="' . esc_attr( get_bloginfo( 'charset' ) ) . "\" ?>\n"; |
|
| 267 | 267 | include( FrmAppHelper::plugin_path() . '/classes/views/xml/xml.php' ); |
| 268 | 268 | } |
| 269 | 269 | |
@@ -289,11 +289,11 @@ discard block |
||
| 289 | 289 | $fid = FrmAppHelper::get_param( 'fid', '', 'get', 'sanitize_text_field' ); |
| 290 | 290 | } |
| 291 | 291 | |
| 292 | - if ( ! ini_get('safe_mode') ) { |
|
| 293 | - set_time_limit(0); //Remove time limit to execute this function |
|
| 294 | - $mem_limit = str_replace('M', '', ini_get('memory_limit')); |
|
| 292 | + if ( ! ini_get( 'safe_mode' ) ) { |
|
| 293 | + set_time_limit( 0 ); //Remove time limit to execute this function |
|
| 294 | + $mem_limit = str_replace( 'M', '', ini_get( 'memory_limit' ) ); |
|
| 295 | 295 | if ( (int) $mem_limit < 256 ) { |
| 296 | - ini_set('memory_limit', '256M'); |
|
| 296 | + ini_set( 'memory_limit', '256M' ); |
|
| 297 | 297 | } |
| 298 | 298 | } |
| 299 | 299 | |
@@ -364,7 +364,7 @@ discard block |
||
| 364 | 364 | $no_export_fields = FrmField::no_save_fields(); |
| 365 | 365 | foreach ( $csv_fields as $k => $f ) { |
| 366 | 366 | if ( in_array( $f->type, $no_export_fields ) ) { |
| 367 | - unset( $csv_fields[ $k ] ); |
|
| 367 | + unset( $csv_fields[$k] ); |
|
| 368 | 368 | } |
| 369 | 369 | } |
| 370 | 370 | } |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | <div class="update-nag frm-update-to-pro"> |
| 136 | 136 | <?php echo FrmAppHelper::kses( $tip['tip'] ) ?> |
| 137 | 137 | <span><?php echo FrmAppHelper::kses( $tip['call'] ) ?></span> |
| 138 | - <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url('https://formidablepro.com?banner=1&tip=' . absint( $tip['num'] ) ) ) ?>" class="button">Upgrade to Pro</a> |
|
| 138 | + <a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( 'https://formidablepro.com?banner=1&tip=' . absint( $tip['num'] ) ) ) ?>" class="button">Upgrade to Pro</a> |
|
| 139 | 139 | </div> |
| 140 | 140 | <?php |
| 141 | 141 | } |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | } |
| 386 | 386 | |
| 387 | 387 | public static function uninstall() { |
| 388 | - FrmAppHelper::permission_check('administrator'); |
|
| 388 | + FrmAppHelper::permission_check( 'administrator' ); |
|
| 389 | 389 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 390 | 390 | |
| 391 | 391 | $frmdb = new FrmDb(); |
@@ -420,7 +420,7 @@ discard block |
||
| 420 | 420 | } |
| 421 | 421 | |
| 422 | 422 | public static function deauthorize() { |
| 423 | - FrmAppHelper::permission_check('frm_change_settings'); |
|
| 423 | + FrmAppHelper::permission_check( 'frm_change_settings' ); |
|
| 424 | 424 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 425 | 425 | |
| 426 | 426 | delete_option( 'frmpro-credentials' ); |
@@ -3,14 +3,14 @@ discard block |
||
| 3 | 3 | class FrmAppController { |
| 4 | 4 | |
| 5 | 5 | public static function menu() { |
| 6 | - FrmAppHelper::maybe_add_permissions(); |
|
| 7 | - if ( ! current_user_can( 'frm_view_forms' ) ) { |
|
| 8 | - return; |
|
| 9 | - } |
|
| 6 | + FrmAppHelper::maybe_add_permissions(); |
|
| 7 | + if ( ! current_user_can( 'frm_view_forms' ) ) { |
|
| 8 | + return; |
|
| 9 | + } |
|
| 10 | 10 | |
| 11 | 11 | $menu_name = FrmAppHelper::get_menu_name(); |
| 12 | 12 | add_menu_page( 'Formidable', $menu_name, 'frm_view_forms', 'formidable', 'FrmFormsController::route', '', self::get_menu_position() ); |
| 13 | - } |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | 15 | private static function get_menu_position() { |
| 16 | 16 | $count = count( get_post_types( array( 'show_ui' => true, '_builtin' => false, 'show_in_menu' => true ) ) ); |
@@ -19,39 +19,39 @@ discard block |
||
| 19 | 19 | return $pos; |
| 20 | 20 | } |
| 21 | 21 | |
| 22 | - public static function load_wp_admin_style() { |
|
| 23 | - FrmAppHelper::load_font_style(); |
|
| 24 | - } |
|
| 22 | + public static function load_wp_admin_style() { |
|
| 23 | + FrmAppHelper::load_font_style(); |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | 26 | public static function get_form_nav( $form, $show_nav = false, $title = 'show' ) { |
| 27 | - global $pagenow, $frm_vars; |
|
| 27 | + global $pagenow, $frm_vars; |
|
| 28 | 28 | |
| 29 | 29 | $show_nav = FrmAppHelper::get_param( 'show_nav', $show_nav, 'get', 'absint' ); |
| 30 | - if ( empty( $show_nav ) ) { |
|
| 31 | - return; |
|
| 32 | - } |
|
| 30 | + if ( empty( $show_nav ) ) { |
|
| 31 | + return; |
|
| 32 | + } |
|
| 33 | 33 | |
| 34 | 34 | $current_page = isset( $_GET['page'] ) ? FrmAppHelper::simple_get( 'page', 'sanitize_title' ) : FrmAppHelper::simple_get( 'post_type', 'sanitize_title', 'None' ); |
| 35 | 35 | if ( $pagenow == 'post.php' || $pagenow == 'post-new.php' ) { |
| 36 | 36 | $current_page = 'frm_display'; |
| 37 | 37 | } |
| 38 | 38 | |
| 39 | - if ( $form ) { |
|
| 39 | + if ( $form ) { |
|
| 40 | 40 | FrmForm::maybe_get_form( $form ); |
| 41 | 41 | |
| 42 | - if ( is_object( $form ) ) { |
|
| 43 | - $id = $form->id; |
|
| 44 | - } |
|
| 45 | - } |
|
| 42 | + if ( is_object( $form ) ) { |
|
| 43 | + $id = $form->id; |
|
| 44 | + } |
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - if ( ! isset( $id ) ) { |
|
| 48 | - $form = $id = false; |
|
| 49 | - } |
|
| 47 | + if ( ! isset( $id ) ) { |
|
| 48 | + $form = $id = false; |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | 51 | $nav_items = self::get_form_nav_items( $id ); |
| 52 | 52 | |
| 53 | - include( FrmAppHelper::plugin_path() . '/classes/views/shared/form-nav.php' ); |
|
| 54 | - } |
|
| 53 | + include( FrmAppHelper::plugin_path() . '/classes/views/shared/form-nav.php' ); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | 56 | private static function get_form_nav_items( $id ) { |
| 57 | 57 | $nav_items = array( |
@@ -82,28 +82,28 @@ discard block |
||
| 82 | 82 | return $nav_items; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - // Adds a settings link to the plugins page |
|
| 86 | - public static function settings_link( $links ) { |
|
| 85 | + // Adds a settings link to the plugins page |
|
| 86 | + public static function settings_link( $links ) { |
|
| 87 | 87 | $settings = '<a href="' . esc_url( admin_url( 'admin.php?page=formidable-settings' ) ) . '">' . __( 'Settings', 'formidable' ) . '</a>'; |
| 88 | - array_unshift( $links, $settings ); |
|
| 88 | + array_unshift( $links, $settings ); |
|
| 89 | 89 | |
| 90 | - return $links; |
|
| 91 | - } |
|
| 90 | + return $links; |
|
| 91 | + } |
|
| 92 | 92 | |
| 93 | - public static function pro_get_started_headline() { |
|
| 93 | + public static function pro_get_started_headline() { |
|
| 94 | 94 | self::maybe_show_upgrade_bar(); |
| 95 | 95 | |
| 96 | - // Don't display this error as we're upgrading the thing, or if the user shouldn't see the message |
|
| 97 | - if ( 'upgrade-plugin' == FrmAppHelper::simple_get( 'action', 'sanitize_title' ) || ! current_user_can( 'update_plugins' ) ) { |
|
| 98 | - return; |
|
| 99 | - } |
|
| 96 | + // Don't display this error as we're upgrading the thing, or if the user shouldn't see the message |
|
| 97 | + if ( 'upgrade-plugin' == FrmAppHelper::simple_get( 'action', 'sanitize_title' ) || ! current_user_can( 'update_plugins' ) ) { |
|
| 98 | + return; |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | 101 | if ( get_site_option( 'frmpro-authorized' ) && ! file_exists( FrmAppHelper::plugin_path() . '/pro/formidable-pro.php' ) ) { |
| 102 | - FrmAppHelper::load_admin_wide_js(); |
|
| 102 | + FrmAppHelper::load_admin_wide_js(); |
|
| 103 | 103 | |
| 104 | - // user is authorized, but running free version |
|
| 105 | - $inst_install_url = 'https://formidablepro.com/knowledgebase/install-formidable-forms/'; |
|
| 106 | - ?> |
|
| 104 | + // user is authorized, but running free version |
|
| 105 | + $inst_install_url = 'https://formidablepro.com/knowledgebase/install-formidable-forms/'; |
|
| 106 | + ?> |
|
| 107 | 107 | <div class="error" class="frm_previous_install"> |
| 108 | 108 | <?php |
| 109 | 109 | echo wp_kses_post( apply_filters( 'frm_pro_update_msg', |
@@ -115,8 +115,8 @@ discard block |
||
| 115 | 115 | ) ); ?> |
| 116 | 116 | </div> |
| 117 | 117 | <?php |
| 118 | - } |
|
| 119 | - } |
|
| 118 | + } |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | 121 | private static function maybe_show_upgrade_bar() { |
| 122 | 122 | $page = FrmAppHelper::simple_get( 'page', 'sanitize_title' ); |
@@ -218,7 +218,7 @@ discard block |
||
| 218 | 218 | } |
| 219 | 219 | } |
| 220 | 220 | |
| 221 | - public static function admin_js() { |
|
| 221 | + public static function admin_js() { |
|
| 222 | 222 | $version = FrmAppHelper::plugin_version(); |
| 223 | 223 | FrmAppHelper::load_admin_wide_js( false ); |
| 224 | 224 | |
@@ -229,7 +229,7 @@ discard block |
||
| 229 | 229 | 'bootstrap_tooltip', 'bootstrap-multiselect', |
| 230 | 230 | ), $version, true ); |
| 231 | 231 | wp_register_style( 'formidable-admin', FrmAppHelper::plugin_url() . '/css/frm_admin.css', array(), $version ); |
| 232 | - wp_register_script( 'bootstrap_tooltip', FrmAppHelper::plugin_url() . '/js/bootstrap.min.js', array( 'jquery' ), '3.3.4' ); |
|
| 232 | + wp_register_script( 'bootstrap_tooltip', FrmAppHelper::plugin_url() . '/js/bootstrap.min.js', array( 'jquery' ), '3.3.4' ); |
|
| 233 | 233 | wp_register_style( 'formidable-grids', FrmAppHelper::plugin_url() . '/css/frm_grids.css', array(), $version ); |
| 234 | 234 | wp_register_style( 'formidable-dropzone', FrmAppHelper::plugin_url() . '/css/dropzone.css', array(), $version ); |
| 235 | 235 | |
@@ -242,65 +242,65 @@ discard block |
||
| 242 | 242 | global $pagenow; |
| 243 | 243 | if ( strpos( $page, 'formidable' ) === 0 || ( $pagenow == 'edit.php' && $post_type == 'frm_display' ) ) { |
| 244 | 244 | |
| 245 | - wp_enqueue_script( 'admin-widgets' ); |
|
| 246 | - wp_enqueue_style( 'widgets' ); |
|
| 247 | - wp_enqueue_script( 'formidable' ); |
|
| 248 | - wp_enqueue_script( 'formidable_admin' ); |
|
| 245 | + wp_enqueue_script( 'admin-widgets' ); |
|
| 246 | + wp_enqueue_style( 'widgets' ); |
|
| 247 | + wp_enqueue_script( 'formidable' ); |
|
| 248 | + wp_enqueue_script( 'formidable_admin' ); |
|
| 249 | 249 | FrmAppHelper::localize_script( 'admin' ); |
| 250 | 250 | |
| 251 | - wp_enqueue_style( 'formidable-admin' ); |
|
| 251 | + wp_enqueue_style( 'formidable-admin' ); |
|
| 252 | 252 | wp_enqueue_style( 'formidable-grids' ); |
| 253 | 253 | wp_enqueue_style( 'formidable-dropzone' ); |
| 254 | - add_thickbox(); |
|
| 254 | + add_thickbox(); |
|
| 255 | 255 | |
| 256 | - wp_register_script( 'formidable-editinplace', FrmAppHelper::plugin_url() . '/js/jquery/jquery.editinplace.packed.js', array( 'jquery' ), '2.3.0' ); |
|
| 256 | + wp_register_script( 'formidable-editinplace', FrmAppHelper::plugin_url() . '/js/jquery/jquery.editinplace.packed.js', array( 'jquery' ), '2.3.0' ); |
|
| 257 | 257 | |
| 258 | - } else if ( $pagenow == 'post.php' || ( $pagenow == 'post-new.php' && $post_type == 'frm_display' ) ) { |
|
| 259 | - if ( isset( $_REQUEST['post_type'] ) ) { |
|
| 260 | - $post_type = sanitize_title( $_REQUEST['post_type'] ); |
|
| 258 | + } else if ( $pagenow == 'post.php' || ( $pagenow == 'post-new.php' && $post_type == 'frm_display' ) ) { |
|
| 259 | + if ( isset( $_REQUEST['post_type'] ) ) { |
|
| 260 | + $post_type = sanitize_title( $_REQUEST['post_type'] ); |
|
| 261 | 261 | } else if ( isset( $_REQUEST['post'] ) && absint( $_REQUEST['post'] ) ) { |
| 262 | 262 | $post = get_post( absint( $_REQUEST['post'] ) ); |
| 263 | - if ( ! $post ) { |
|
| 264 | - return; |
|
| 265 | - } |
|
| 266 | - $post_type = $post->post_type; |
|
| 267 | - } else { |
|
| 268 | - return; |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - if ( $post_type == 'frm_display' ) { |
|
| 272 | - wp_enqueue_script( 'jquery-ui-draggable' ); |
|
| 273 | - wp_enqueue_script( 'formidable_admin' ); |
|
| 274 | - wp_enqueue_style( 'formidable-admin' ); |
|
| 263 | + if ( ! $post ) { |
|
| 264 | + return; |
|
| 265 | + } |
|
| 266 | + $post_type = $post->post_type; |
|
| 267 | + } else { |
|
| 268 | + return; |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + if ( $post_type == 'frm_display' ) { |
|
| 272 | + wp_enqueue_script( 'jquery-ui-draggable' ); |
|
| 273 | + wp_enqueue_script( 'formidable_admin' ); |
|
| 274 | + wp_enqueue_style( 'formidable-admin' ); |
|
| 275 | 275 | FrmAppHelper::localize_script( 'admin' ); |
| 276 | - } |
|
| 277 | - } else if ( $pagenow == 'widgets.php' ) { |
|
| 278 | - FrmAppHelper::load_admin_wide_js(); |
|
| 279 | - } |
|
| 280 | - } |
|
| 281 | - |
|
| 282 | - public static function load_lang() { |
|
| 283 | - load_plugin_textdomain( 'formidable', false, FrmAppHelper::plugin_folder() . '/languages/' ); |
|
| 284 | - } |
|
| 285 | - |
|
| 286 | - /** |
|
| 287 | - * Filter shortcodes in text widgets |
|
| 288 | - */ |
|
| 289 | - public static function widget_text_filter( $content ) { |
|
| 290 | - $regex = '/\[\s*(formidable|display-frm-data|frm-stats|frm-graph|frm-entry-links|formresults|frm-search)\s+.*\]/'; |
|
| 291 | - return preg_replace_callback( $regex, 'FrmAppHelper::widget_text_filter_callback', $content ); |
|
| 292 | - } |
|
| 293 | - |
|
| 294 | - public static function front_head() { |
|
| 295 | - if ( is_multisite() ) { |
|
| 296 | - $old_db_version = get_option( 'frm_db_version' ); |
|
| 297 | - $pro_db_version = FrmAppHelper::pro_is_installed() ? get_option( 'frmpro_db_version' ) : false; |
|
| 298 | - if ( ( (int) $old_db_version < (int) FrmAppHelper::$db_version ) || |
|
| 299 | - ( FrmAppHelper::pro_is_installed() && (int) $pro_db_version < (int) FrmAppHelper::$pro_db_version ) ) { |
|
| 300 | - self::install( $old_db_version ); |
|
| 301 | - } |
|
| 302 | - } |
|
| 303 | - } |
|
| 276 | + } |
|
| 277 | + } else if ( $pagenow == 'widgets.php' ) { |
|
| 278 | + FrmAppHelper::load_admin_wide_js(); |
|
| 279 | + } |
|
| 280 | + } |
|
| 281 | + |
|
| 282 | + public static function load_lang() { |
|
| 283 | + load_plugin_textdomain( 'formidable', false, FrmAppHelper::plugin_folder() . '/languages/' ); |
|
| 284 | + } |
|
| 285 | + |
|
| 286 | + /** |
|
| 287 | + * Filter shortcodes in text widgets |
|
| 288 | + */ |
|
| 289 | + public static function widget_text_filter( $content ) { |
|
| 290 | + $regex = '/\[\s*(formidable|display-frm-data|frm-stats|frm-graph|frm-entry-links|formresults|frm-search)\s+.*\]/'; |
|
| 291 | + return preg_replace_callback( $regex, 'FrmAppHelper::widget_text_filter_callback', $content ); |
|
| 292 | + } |
|
| 293 | + |
|
| 294 | + public static function front_head() { |
|
| 295 | + if ( is_multisite() ) { |
|
| 296 | + $old_db_version = get_option( 'frm_db_version' ); |
|
| 297 | + $pro_db_version = FrmAppHelper::pro_is_installed() ? get_option( 'frmpro_db_version' ) : false; |
|
| 298 | + if ( ( (int) $old_db_version < (int) FrmAppHelper::$db_version ) || |
|
| 299 | + ( FrmAppHelper::pro_is_installed() && (int) $pro_db_version < (int) FrmAppHelper::$pro_db_version ) ) { |
|
| 300 | + self::install( $old_db_version ); |
|
| 301 | + } |
|
| 302 | + } |
|
| 303 | + } |
|
| 304 | 304 | |
| 305 | 305 | public static function localize_script( $location ) { |
| 306 | 306 | _deprecated_function( __FUNCTION__, '2.0.9', 'FrmAppHelper::localize_script' ); |
@@ -355,20 +355,20 @@ discard block |
||
| 355 | 355 | wp_die(); |
| 356 | 356 | } |
| 357 | 357 | |
| 358 | - public static function activation_install() { |
|
| 359 | - FrmAppHelper::delete_cache_and_transient( 'frm_plugin_version' ); |
|
| 360 | - FrmFormActionsController::actions_init(); |
|
| 361 | - self::install(); |
|
| 362 | - } |
|
| 358 | + public static function activation_install() { |
|
| 359 | + FrmAppHelper::delete_cache_and_transient( 'frm_plugin_version' ); |
|
| 360 | + FrmFormActionsController::actions_init(); |
|
| 361 | + self::install(); |
|
| 362 | + } |
|
| 363 | 363 | |
| 364 | - public static function install( $old_db_version = false ) { |
|
| 365 | - $frmdb = new FrmDb(); |
|
| 366 | - $frmdb->upgrade( $old_db_version ); |
|
| 367 | - } |
|
| 364 | + public static function install( $old_db_version = false ) { |
|
| 365 | + $frmdb = new FrmDb(); |
|
| 366 | + $frmdb->upgrade( $old_db_version ); |
|
| 367 | + } |
|
| 368 | 368 | |
| 369 | - public static function uninstall() { |
|
| 369 | + public static function uninstall() { |
|
| 370 | 370 | FrmAppHelper::permission_check('administrator'); |
| 371 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 371 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 372 | 372 | |
| 373 | 373 | $frmdb = new FrmDb(); |
| 374 | 374 | $frmdb->uninstall(); |
@@ -377,43 +377,43 @@ discard block |
||
| 377 | 377 | deactivate_plugins( FrmAppHelper::plugin_folder() . '/formidable.php', false, false ); |
| 378 | 378 | echo esc_url_raw( admin_url( 'plugins.php?deactivate=true' ) ); |
| 379 | 379 | |
| 380 | - wp_die(); |
|
| 381 | - } |
|
| 380 | + wp_die(); |
|
| 381 | + } |
|
| 382 | 382 | |
| 383 | - public static function drop_tables( $tables ) { |
|
| 384 | - global $wpdb; |
|
| 385 | - $tables[] = $wpdb->prefix . 'frm_fields'; |
|
| 386 | - $tables[] = $wpdb->prefix . 'frm_forms'; |
|
| 387 | - $tables[] = $wpdb->prefix . 'frm_items'; |
|
| 388 | - $tables[] = $wpdb->prefix . 'frm_item_metas'; |
|
| 389 | - return $tables; |
|
| 390 | - } |
|
| 383 | + public static function drop_tables( $tables ) { |
|
| 384 | + global $wpdb; |
|
| 385 | + $tables[] = $wpdb->prefix . 'frm_fields'; |
|
| 386 | + $tables[] = $wpdb->prefix . 'frm_forms'; |
|
| 387 | + $tables[] = $wpdb->prefix . 'frm_items'; |
|
| 388 | + $tables[] = $wpdb->prefix . 'frm_item_metas'; |
|
| 389 | + return $tables; |
|
| 390 | + } |
|
| 391 | 391 | |
| 392 | - // Routes for wordpress pages -- we're just replacing content here folks. |
|
| 393 | - public static function page_route( $content ) { |
|
| 394 | - global $post; |
|
| 392 | + // Routes for wordpress pages -- we're just replacing content here folks. |
|
| 393 | + public static function page_route( $content ) { |
|
| 394 | + global $post; |
|
| 395 | 395 | |
| 396 | - $frm_settings = FrmAppHelper::get_settings(); |
|
| 397 | - if ( $post && $post->ID == $frm_settings->preview_page_id && isset( $_GET['form'] ) ) { |
|
| 398 | - $content = FrmFormsController::page_preview(); |
|
| 399 | - } |
|
| 396 | + $frm_settings = FrmAppHelper::get_settings(); |
|
| 397 | + if ( $post && $post->ID == $frm_settings->preview_page_id && isset( $_GET['form'] ) ) { |
|
| 398 | + $content = FrmFormsController::page_preview(); |
|
| 399 | + } |
|
| 400 | 400 | |
| 401 | - return $content; |
|
| 402 | - } |
|
| 401 | + return $content; |
|
| 402 | + } |
|
| 403 | 403 | |
| 404 | - public static function deauthorize() { |
|
| 404 | + public static function deauthorize() { |
|
| 405 | 405 | FrmAppHelper::permission_check('frm_change_settings'); |
| 406 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 407 | - |
|
| 408 | - delete_option( 'frmpro-credentials' ); |
|
| 409 | - delete_option( 'frmpro-authorized' ); |
|
| 410 | - delete_site_option( 'frmpro-credentials' ); |
|
| 411 | - delete_site_option( 'frmpro-authorized' ); |
|
| 412 | - wp_die(); |
|
| 413 | - } |
|
| 414 | - |
|
| 415 | - public static function get_form_shortcode( $atts ) { |
|
| 416 | - _deprecated_function( __FUNCTION__, '1.07.05', 'FrmFormsController::get_form_shortcode()' ); |
|
| 417 | - return FrmFormsController::get_form_shortcode( $atts ); |
|
| 418 | - } |
|
| 406 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 407 | + |
|
| 408 | + delete_option( 'frmpro-credentials' ); |
|
| 409 | + delete_option( 'frmpro-authorized' ); |
|
| 410 | + delete_site_option( 'frmpro-credentials' ); |
|
| 411 | + delete_site_option( 'frmpro-authorized' ); |
|
| 412 | + wp_die(); |
|
| 413 | + } |
|
| 414 | + |
|
| 415 | + public static function get_form_shortcode( $atts ) { |
|
| 416 | + _deprecated_function( __FUNCTION__, '1.07.05', 'FrmFormsController::get_form_shortcode()' ); |
|
| 417 | + return FrmFormsController::get_form_shortcode( $atts ); |
|
| 418 | + } |
|
| 419 | 419 | } |
@@ -48,17 +48,17 @@ discard block |
||
| 48 | 48 | 'highrise' => 'FrmDefHrsAction', |
| 49 | 49 | ) ); |
| 50 | 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'); |
|
| 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 | 53 | |
| 54 | 54 | foreach ( $action_classes as $action_class ) { |
| 55 | - self::$registered_actions->register($action_class); |
|
| 55 | + self::$registered_actions->register( $action_class ); |
|
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | public static function get_form_actions( $action = 'all' ) { |
| 60 | 60 | $temp_actions = self::$registered_actions; |
| 61 | - if ( empty($temp_actions) ) { |
|
| 61 | + if ( empty( $temp_actions ) ) { |
|
| 62 | 62 | self::actions_init(); |
| 63 | 63 | $temp_actions = self::$registered_actions->actions; |
| 64 | 64 | } else { |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | return $a; |
| 73 | 73 | } |
| 74 | 74 | |
| 75 | - $actions[ $a->id_base ] = $a; |
|
| 75 | + $actions[$a->id_base] = $a; |
|
| 76 | 76 | } |
| 77 | 77 | unset( $temp_actions, $a ); |
| 78 | 78 | |
@@ -86,7 +86,7 @@ discard block |
||
| 86 | 86 | arsort( $temp_actions ); |
| 87 | 87 | foreach ( $temp_actions as $type => $a ) { |
| 88 | 88 | if ( ! isset( $a->action_options['active'] ) || empty( $a->action_options['active'] ) ) { |
| 89 | - unset( $actions[ $type ] ); |
|
| 89 | + unset( $actions[$type] ); |
|
| 90 | 90 | if ( count( $actions ) <= $action_limit ) { |
| 91 | 91 | break; |
| 92 | 92 | } |
@@ -118,26 +118,26 @@ discard block |
||
| 118 | 118 | $action_map = array(); |
| 119 | 119 | |
| 120 | 120 | foreach ( $action_controls as $key => $control ) { |
| 121 | - $action_map[ $control->id_base ] = $key; |
|
| 121 | + $action_map[$control->id_base] = $key; |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | foreach ( $form_actions as $action ) { |
| 125 | - if ( ! isset( $action_map[ $action->post_excerpt ] ) ) { |
|
| 125 | + if ( ! isset( $action_map[$action->post_excerpt] ) ) { |
|
| 126 | 126 | // don't try and show settings if action no longer exists |
| 127 | 127 | continue; |
| 128 | 128 | } |
| 129 | 129 | |
| 130 | - self::action_control( $action, $form, $action->ID, $action_controls[ $action_map[ $action->post_excerpt ] ], $values ); |
|
| 130 | + self::action_control( $action, $form, $action->ID, $action_controls[$action_map[$action->post_excerpt]], $values ); |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | public static function action_control( $form_action, $form, $action_key, $action_control, $values ) { |
| 135 | - $action_control->_set($action_key); |
|
| 135 | + $action_control->_set( $action_key ); |
|
| 136 | 136 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/form_action.php' ); |
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | public static function add_form_action() { |
| 140 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 140 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 141 | 141 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 142 | 142 | |
| 143 | 143 | global $frm_vars; |
@@ -146,55 +146,55 @@ discard block |
||
| 146 | 146 | $action_type = sanitize_text_field( $_POST['type'] ); |
| 147 | 147 | |
| 148 | 148 | $action_control = self::get_form_actions( $action_type ); |
| 149 | - $action_control->_set($action_key); |
|
| 149 | + $action_control->_set( $action_key ); |
|
| 150 | 150 | |
| 151 | 151 | $form_id = absint( $_POST['form_id'] ); |
| 152 | 152 | |
| 153 | - $form_action = $action_control->prepare_new($form_id); |
|
| 153 | + $form_action = $action_control->prepare_new( $form_id ); |
|
| 154 | 154 | |
| 155 | 155 | $values = array(); |
| 156 | - $form = self::fields_to_values($form_id, $values); |
|
| 156 | + $form = self::fields_to_values( $form_id, $values ); |
|
| 157 | 157 | |
| 158 | 158 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/form_action.php' ); |
| 159 | 159 | wp_die(); |
| 160 | 160 | } |
| 161 | 161 | |
| 162 | 162 | public static function fill_action() { |
| 163 | - FrmAppHelper::permission_check('frm_edit_forms'); |
|
| 163 | + FrmAppHelper::permission_check( 'frm_edit_forms' ); |
|
| 164 | 164 | check_ajax_referer( 'frm_ajax', 'nonce' ); |
| 165 | 165 | |
| 166 | 166 | $action_key = absint( $_POST['action_id'] ); |
| 167 | 167 | $action_type = sanitize_text_field( $_POST['action_type'] ); |
| 168 | 168 | |
| 169 | 169 | $action_control = self::get_form_actions( $action_type ); |
| 170 | - if ( empty($action_control) ) { |
|
| 170 | + if ( empty( $action_control ) ) { |
|
| 171 | 171 | wp_die(); |
| 172 | 172 | } |
| 173 | 173 | |
| 174 | 174 | $form_action = $action_control->get_single_action( $action_key ); |
| 175 | 175 | |
| 176 | 176 | $values = array(); |
| 177 | - $form = self::fields_to_values($form_action->menu_order, $values); |
|
| 177 | + $form = self::fields_to_values( $form_action->menu_order, $values ); |
|
| 178 | 178 | |
| 179 | 179 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/_action_inside.php' ); |
| 180 | 180 | wp_die(); |
| 181 | 181 | } |
| 182 | 182 | |
| 183 | 183 | private static function fields_to_values( $form_id, array &$values ) { |
| 184 | - $form = FrmForm::getOne($form_id); |
|
| 184 | + $form = FrmForm::getOne( $form_id ); |
|
| 185 | 185 | |
| 186 | 186 | $values = array( 'fields' => array(), 'id' => $form->id ); |
| 187 | 187 | |
| 188 | - $fields = FrmField::get_all_for_form($form->id); |
|
| 188 | + $fields = FrmField::get_all_for_form( $form->id ); |
|
| 189 | 189 | foreach ( $fields as $k => $f ) { |
| 190 | 190 | $f = (array) $f; |
| 191 | 191 | $opts = (array) $f['field_options']; |
| 192 | - $f = array_merge($opts, $f); |
|
| 192 | + $f = array_merge( $opts, $f ); |
|
| 193 | 193 | if ( ! isset( $f['post_field'] ) ) { |
| 194 | 194 | $f['post_field'] = ''; |
| 195 | 195 | } |
| 196 | 196 | $values['fields'][] = $f; |
| 197 | - unset($k, $f); |
|
| 197 | + unset( $k, $f ); |
|
| 198 | 198 | } |
| 199 | 199 | |
| 200 | 200 | return $form; |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | $new_actions = array(); |
| 210 | 210 | |
| 211 | 211 | foreach ( $registered_actions as $registered_action ) { |
| 212 | - $action_ids = $registered_action->update_callback($form_id); |
|
| 212 | + $action_ids = $registered_action->update_callback( $form_id ); |
|
| 213 | 213 | if ( ! empty( $action_ids ) ) { |
| 214 | 214 | $new_actions[] = $action_ids; |
| 215 | 215 | } |
@@ -291,33 +291,33 @@ discard block |
||
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | // store actions so they can be triggered with the correct priority |
| 294 | - $stored_actions[ $action->ID ] = $action; |
|
| 295 | - $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
| 294 | + $stored_actions[$action->ID] = $action; |
|
| 295 | + $action_priority[$action->ID] = $link_settings[$action->post_excerpt]->action_options['priority']; |
|
| 296 | 296 | |
| 297 | - unset($action); |
|
| 297 | + unset( $action ); |
|
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | if ( ! empty( $stored_actions ) ) { |
| 301 | - asort($action_priority); |
|
| 301 | + asort( $action_priority ); |
|
| 302 | 302 | |
| 303 | 303 | // make sure hooks are loaded |
| 304 | 304 | new FrmNotification(); |
| 305 | 305 | |
| 306 | 306 | foreach ( $action_priority as $action_id => $priority ) { |
| 307 | - $action = $stored_actions[ $action_id ]; |
|
| 307 | + $action = $stored_actions[$action_id]; |
|
| 308 | 308 | do_action( 'frm_trigger_' . $action->post_excerpt . '_action', $action, $entry, $form, $event ); |
| 309 | 309 | do_action( 'frm_trigger_' . $action->post_excerpt . '_' . $event . '_action', $action, $entry, $form ); |
| 310 | 310 | |
| 311 | 311 | // If post is created, get updated $entry object |
| 312 | 312 | if ( $action->post_excerpt == 'wppost' && $event == 'create' ) { |
| 313 | - $entry = FrmEntry::getOne($entry->id, true); |
|
| 313 | + $entry = FrmEntry::getOne( $entry->id, true ); |
|
| 314 | 314 | } |
| 315 | 315 | } |
| 316 | 316 | } |
| 317 | 317 | } |
| 318 | 318 | |
| 319 | 319 | public static function duplicate_form_actions( $form_id, $values, $args = array() ) { |
| 320 | - if ( ! isset($args['old_id']) || empty($args['old_id']) ) { |
|
| 320 | + if ( ! isset( $args['old_id'] ) || empty( $args['old_id'] ) ) { |
|
| 321 | 321 | // continue if we know which actions to copy |
| 322 | 322 | return; |
| 323 | 323 | } |
@@ -351,22 +351,22 @@ discard block |
||
| 351 | 351 | } |
| 352 | 352 | |
| 353 | 353 | public function register( $action_class ) { |
| 354 | - $this->actions[ $action_class ] = new $action_class(); |
|
| 354 | + $this->actions[$action_class] = new $action_class(); |
|
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | public function unregister( $action_class ) { |
| 358 | - if ( isset( $this->actions[ $action_class ] ) ) { |
|
| 359 | - unset($this->actions[ $action_class ]); |
|
| 358 | + if ( isset( $this->actions[$action_class] ) ) { |
|
| 359 | + unset( $this->actions[$action_class] ); |
|
| 360 | 360 | } |
| 361 | 361 | } |
| 362 | 362 | |
| 363 | 363 | public function _register_actions() { |
| 364 | - $keys = array_keys($this->actions); |
|
| 364 | + $keys = array_keys( $this->actions ); |
|
| 365 | 365 | |
| 366 | 366 | foreach ( $keys as $key ) { |
| 367 | 367 | // don't register new action if old action with the same id is already registered |
| 368 | - if ( ! isset( $this->actions[ $key ] ) ) { |
|
| 369 | - $this->actions[ $key ]->_register(); |
|
| 368 | + if ( ! isset( $this->actions[$key] ) ) { |
|
| 369 | + $this->actions[$key]->_register(); |
|
| 370 | 370 | } |
| 371 | 371 | } |
| 372 | 372 | } |
@@ -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,116 +113,116 @@ 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); |
|
| 135 | + $action_control->_set($action_key); |
|
| 136 | 136 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/form_action.php' ); |
| 137 | - } |
|
| 137 | + } |
|
| 138 | 138 | |
| 139 | - public static function add_form_action() { |
|
| 139 | + public static function add_form_action() { |
|
| 140 | 140 | FrmAppHelper::permission_check('frm_edit_forms'); |
| 141 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 141 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 142 | 142 | |
| 143 | - global $frm_vars; |
|
| 143 | + global $frm_vars; |
|
| 144 | 144 | |
| 145 | 145 | $action_key = absint( $_POST['list_id'] ); |
| 146 | - $action_type = sanitize_text_field( $_POST['type'] ); |
|
| 146 | + $action_type = sanitize_text_field( $_POST['type'] ); |
|
| 147 | 147 | |
| 148 | - $action_control = self::get_form_actions( $action_type ); |
|
| 149 | - $action_control->_set($action_key); |
|
| 148 | + $action_control = self::get_form_actions( $action_type ); |
|
| 149 | + $action_control->_set($action_key); |
|
| 150 | 150 | |
| 151 | - $form_id = absint( $_POST['form_id'] ); |
|
| 151 | + $form_id = absint( $_POST['form_id'] ); |
|
| 152 | 152 | |
| 153 | - $form_action = $action_control->prepare_new($form_id); |
|
| 153 | + $form_action = $action_control->prepare_new($form_id); |
|
| 154 | 154 | |
| 155 | - $values = array(); |
|
| 156 | - $form = self::fields_to_values($form_id, $values); |
|
| 155 | + $values = array(); |
|
| 156 | + $form = self::fields_to_values($form_id, $values); |
|
| 157 | 157 | |
| 158 | 158 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/form_action.php' ); |
| 159 | - wp_die(); |
|
| 160 | - } |
|
| 159 | + wp_die(); |
|
| 160 | + } |
|
| 161 | 161 | |
| 162 | - public static function fill_action() { |
|
| 162 | + public static function fill_action() { |
|
| 163 | 163 | FrmAppHelper::permission_check('frm_edit_forms'); |
| 164 | - check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 164 | + check_ajax_referer( 'frm_ajax', 'nonce' ); |
|
| 165 | 165 | |
| 166 | - $action_key = absint( $_POST['action_id'] ); |
|
| 167 | - $action_type = sanitize_text_field( $_POST['action_type'] ); |
|
| 166 | + $action_key = absint( $_POST['action_id'] ); |
|
| 167 | + $action_type = sanitize_text_field( $_POST['action_type'] ); |
|
| 168 | 168 | |
| 169 | - $action_control = self::get_form_actions( $action_type ); |
|
| 170 | - if ( empty($action_control) ) { |
|
| 171 | - wp_die(); |
|
| 172 | - } |
|
| 169 | + $action_control = self::get_form_actions( $action_type ); |
|
| 170 | + if ( empty($action_control) ) { |
|
| 171 | + wp_die(); |
|
| 172 | + } |
|
| 173 | 173 | |
| 174 | - $form_action = $action_control->get_single_action( $action_key ); |
|
| 174 | + $form_action = $action_control->get_single_action( $action_key ); |
|
| 175 | 175 | |
| 176 | - $values = array(); |
|
| 177 | - $form = self::fields_to_values($form_action->menu_order, $values); |
|
| 176 | + $values = array(); |
|
| 177 | + $form = self::fields_to_values($form_action->menu_order, $values); |
|
| 178 | 178 | |
| 179 | 179 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-form-actions/_action_inside.php' ); |
| 180 | - wp_die(); |
|
| 181 | - } |
|
| 180 | + wp_die(); |
|
| 181 | + } |
|
| 182 | 182 | |
| 183 | 183 | private static function fields_to_values( $form_id, array &$values ) { |
| 184 | - $form = FrmForm::getOne($form_id); |
|
| 184 | + $form = FrmForm::getOne($form_id); |
|
| 185 | 185 | |
| 186 | 186 | $values = array( 'fields' => array(), 'id' => $form->id ); |
| 187 | 187 | |
| 188 | - $fields = FrmField::get_all_for_form($form->id); |
|
| 189 | - foreach ( $fields as $k => $f ) { |
|
| 190 | - $f = (array) $f; |
|
| 191 | - $opts = (array) $f['field_options']; |
|
| 192 | - $f = array_merge($opts, $f); |
|
| 193 | - if ( ! isset( $f['post_field'] ) ) { |
|
| 194 | - $f['post_field'] = ''; |
|
| 195 | - } |
|
| 196 | - $values['fields'][] = $f; |
|
| 197 | - unset($k, $f); |
|
| 198 | - } |
|
| 199 | - |
|
| 200 | - return $form; |
|
| 201 | - } |
|
| 188 | + $fields = FrmField::get_all_for_form($form->id); |
|
| 189 | + foreach ( $fields as $k => $f ) { |
|
| 190 | + $f = (array) $f; |
|
| 191 | + $opts = (array) $f['field_options']; |
|
| 192 | + $f = array_merge($opts, $f); |
|
| 193 | + if ( ! isset( $f['post_field'] ) ) { |
|
| 194 | + $f['post_field'] = ''; |
|
| 195 | + } |
|
| 196 | + $values['fields'][] = $f; |
|
| 197 | + unset($k, $f); |
|
| 198 | + } |
|
| 199 | + |
|
| 200 | + return $form; |
|
| 201 | + } |
|
| 202 | 202 | |
| 203 | 203 | public static function update_settings( $form_id ) { |
| 204 | - global $wpdb; |
|
| 204 | + global $wpdb; |
|
| 205 | 205 | |
| 206 | - $registered_actions = self::$registered_actions->actions; |
|
| 206 | + $registered_actions = self::$registered_actions->actions; |
|
| 207 | 207 | |
| 208 | 208 | $old_actions = FrmDb::get_col( $wpdb->posts, array( 'post_type' => self::$action_post_type, 'menu_order' => $form_id ), 'ID' ); |
| 209 | - $new_actions = array(); |
|
| 209 | + $new_actions = array(); |
|
| 210 | 210 | |
| 211 | - foreach ( $registered_actions as $registered_action ) { |
|
| 212 | - $action_ids = $registered_action->update_callback($form_id); |
|
| 213 | - if ( ! empty( $action_ids ) ) { |
|
| 214 | - $new_actions[] = $action_ids; |
|
| 215 | - } |
|
| 216 | - } |
|
| 211 | + foreach ( $registered_actions as $registered_action ) { |
|
| 212 | + $action_ids = $registered_action->update_callback($form_id); |
|
| 213 | + if ( ! empty( $action_ids ) ) { |
|
| 214 | + $new_actions[] = $action_ids; |
|
| 215 | + } |
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - //Only use array_merge if there are new actions |
|
| 219 | - if ( ! empty( $new_actions ) ) { |
|
| 220 | - $new_actions = call_user_func_array( 'array_merge', $new_actions ); |
|
| 221 | - } |
|
| 222 | - $old_actions = array_diff( $old_actions, $new_actions ); |
|
| 218 | + //Only use array_merge if there are new actions |
|
| 219 | + if ( ! empty( $new_actions ) ) { |
|
| 220 | + $new_actions = call_user_func_array( 'array_merge', $new_actions ); |
|
| 221 | + } |
|
| 222 | + $old_actions = array_diff( $old_actions, $new_actions ); |
|
| 223 | 223 | |
| 224 | 224 | self::delete_missing_actions( $old_actions ); |
| 225 | - } |
|
| 225 | + } |
|
| 226 | 226 | |
| 227 | 227 | public static function delete_missing_actions( $old_actions ) { |
| 228 | 228 | if ( ! empty( $old_actions ) ) { |
@@ -242,36 +242,36 @@ discard block |
||
| 242 | 242 | self::trigger_actions( $event, $form_id, $entry_id, 'all', $args ); |
| 243 | 243 | } |
| 244 | 244 | |
| 245 | - /** |
|
| 246 | - * @param string $event |
|
| 247 | - */ |
|
| 245 | + /** |
|
| 246 | + * @param string $event |
|
| 247 | + */ |
|
| 248 | 248 | public static function trigger_actions( $event, $form, $entry, $type = 'all', $args = array() ) { |
| 249 | 249 | $form_actions = FrmFormAction::get_action_for_form( ( is_object( $form ) ? $form->id : $form ), $type ); |
| 250 | 250 | |
| 251 | 251 | if ( empty( $form_actions ) ) { |
| 252 | - return; |
|
| 253 | - } |
|
| 252 | + return; |
|
| 253 | + } |
|
| 254 | 254 | |
| 255 | 255 | FrmForm::maybe_get_form( $form ); |
| 256 | 256 | |
| 257 | - $link_settings = self::get_form_actions( $type ); |
|
| 258 | - if ( 'all' != $type ) { |
|
| 259 | - $link_settings = array( $type => $link_settings ); |
|
| 260 | - } |
|
| 257 | + $link_settings = self::get_form_actions( $type ); |
|
| 258 | + if ( 'all' != $type ) { |
|
| 259 | + $link_settings = array( $type => $link_settings ); |
|
| 260 | + } |
|
| 261 | 261 | |
| 262 | - $stored_actions = $action_priority = array(); |
|
| 262 | + $stored_actions = $action_priority = array(); |
|
| 263 | 263 | |
| 264 | 264 | $importing = in_array( $event, array( 'create', 'update' ) ) && defined( 'WP_IMPORTING' ) && WP_IMPORTING; |
| 265 | 265 | |
| 266 | - foreach ( $form_actions as $action ) { |
|
| 266 | + foreach ( $form_actions as $action ) { |
|
| 267 | 267 | $trigger_on_import = $importing && in_array( 'import', $action->post_content['event'] ); |
| 268 | 268 | if ( ! in_array( $event, $action->post_content['event'] ) && ! $trigger_on_import ) { |
| 269 | - continue; |
|
| 270 | - } |
|
| 269 | + continue; |
|
| 270 | + } |
|
| 271 | 271 | |
| 272 | - if ( ! is_object( $entry ) ) { |
|
| 273 | - $entry = FrmEntry::getOne( $entry, true ); |
|
| 274 | - } |
|
| 272 | + if ( ! is_object( $entry ) ) { |
|
| 273 | + $entry = FrmEntry::getOne( $entry, true ); |
|
| 274 | + } |
|
| 275 | 275 | |
| 276 | 276 | if ( empty( $entry ) || ( $entry->is_draft && $event != 'draft' ) ) { |
| 277 | 277 | continue; |
@@ -285,64 +285,64 @@ discard block |
||
| 285 | 285 | if ( ! $trigger_children ) { |
| 286 | 286 | continue; |
| 287 | 287 | } |
| 288 | - } |
|
| 288 | + } |
|
| 289 | 289 | |
| 290 | - // check conditional logic |
|
| 290 | + // check conditional logic |
|
| 291 | 291 | $stop = FrmFormAction::action_conditions_met( $action, $entry ); |
| 292 | - if ( $stop ) { |
|
| 293 | - continue; |
|
| 294 | - } |
|
| 292 | + if ( $stop ) { |
|
| 293 | + continue; |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - // store actions so they can be triggered with the correct priority |
|
| 297 | - $stored_actions[ $action->ID ] = $action; |
|
| 298 | - $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
| 296 | + // store actions so they can be triggered with the correct priority |
|
| 297 | + $stored_actions[ $action->ID ] = $action; |
|
| 298 | + $action_priority[ $action->ID ] = $link_settings[ $action->post_excerpt ]->action_options['priority']; |
|
| 299 | 299 | |
| 300 | - unset($action); |
|
| 301 | - } |
|
| 300 | + unset($action); |
|
| 301 | + } |
|
| 302 | 302 | |
| 303 | - if ( ! empty( $stored_actions ) ) { |
|
| 304 | - asort($action_priority); |
|
| 303 | + if ( ! empty( $stored_actions ) ) { |
|
| 304 | + asort($action_priority); |
|
| 305 | 305 | |
| 306 | - // make sure hooks are loaded |
|
| 307 | - new FrmNotification(); |
|
| 306 | + // make sure hooks are loaded |
|
| 307 | + new FrmNotification(); |
|
| 308 | 308 | |
| 309 | - foreach ( $action_priority as $action_id => $priority ) { |
|
| 310 | - $action = $stored_actions[ $action_id ]; |
|
| 309 | + foreach ( $action_priority as $action_id => $priority ) { |
|
| 310 | + $action = $stored_actions[ $action_id ]; |
|
| 311 | 311 | do_action( 'frm_trigger_' . $action->post_excerpt . '_action', $action, $entry, $form, $event ); |
| 312 | 312 | do_action( 'frm_trigger_' . $action->post_excerpt . '_' . $event . '_action', $action, $entry, $form ); |
| 313 | 313 | |
| 314 | - // If post is created, get updated $entry object |
|
| 315 | - if ( $action->post_excerpt == 'wppost' && $event == 'create' ) { |
|
| 316 | - $entry = FrmEntry::getOne($entry->id, true); |
|
| 317 | - } |
|
| 318 | - } |
|
| 319 | - } |
|
| 320 | - } |
|
| 314 | + // If post is created, get updated $entry object |
|
| 315 | + if ( $action->post_excerpt == 'wppost' && $event == 'create' ) { |
|
| 316 | + $entry = FrmEntry::getOne($entry->id, true); |
|
| 317 | + } |
|
| 318 | + } |
|
| 319 | + } |
|
| 320 | + } |
|
| 321 | 321 | |
| 322 | 322 | public static function duplicate_form_actions( $form_id, $values, $args = array() ) { |
| 323 | - if ( ! isset($args['old_id']) || empty($args['old_id']) ) { |
|
| 324 | - // continue if we know which actions to copy |
|
| 325 | - return; |
|
| 326 | - } |
|
| 323 | + if ( ! isset($args['old_id']) || empty($args['old_id']) ) { |
|
| 324 | + // continue if we know which actions to copy |
|
| 325 | + return; |
|
| 326 | + } |
|
| 327 | 327 | |
| 328 | - $action_controls = self::get_form_actions( ); |
|
| 328 | + $action_controls = self::get_form_actions( ); |
|
| 329 | 329 | |
| 330 | - foreach ( $action_controls as $action_control ) { |
|
| 331 | - $action_control->duplicate_form_actions( $form_id, $args['old_id'] ); |
|
| 332 | - unset( $action_control ); |
|
| 333 | - } |
|
| 334 | - } |
|
| 330 | + foreach ( $action_controls as $action_control ) { |
|
| 331 | + $action_control->duplicate_form_actions( $form_id, $args['old_id'] ); |
|
| 332 | + unset( $action_control ); |
|
| 333 | + } |
|
| 334 | + } |
|
| 335 | 335 | |
| 336 | - public static function limit_by_type( $where ) { |
|
| 337 | - global $frm_vars, $wpdb; |
|
| 336 | + public static function limit_by_type( $where ) { |
|
| 337 | + global $frm_vars, $wpdb; |
|
| 338 | 338 | |
| 339 | - if ( ! isset( $frm_vars['action_type'] ) ) { |
|
| 340 | - return $where; |
|
| 341 | - } |
|
| 339 | + if ( ! isset( $frm_vars['action_type'] ) ) { |
|
| 340 | + return $where; |
|
| 341 | + } |
|
| 342 | 342 | |
| 343 | - $where .= $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] ); |
|
| 344 | - return $where; |
|
| 345 | - } |
|
| 343 | + $where .= $wpdb->prepare( ' AND post_excerpt = %s ', $frm_vars['action_type'] ); |
|
| 344 | + return $where; |
|
| 345 | + } |
|
| 346 | 346 | } |
| 347 | 347 | |
| 348 | 348 | |
@@ -369,7 +369,7 @@ discard block |
||
| 369 | 369 | foreach ( $keys as $key ) { |
| 370 | 370 | // don't register new action if old action with the same id is already registered |
| 371 | 371 | if ( ! isset( $this->actions[ $key ] ) ) { |
| 372 | - $this->actions[ $key ]->_register(); |
|
| 372 | + $this->actions[ $key ]->_register(); |
|
| 373 | 373 | } |
| 374 | 374 | } |
| 375 | 375 | } |
@@ -23,41 +23,41 @@ |
||
| 23 | 23 | |
| 24 | 24 | global $frm_vars; |
| 25 | 25 | $frm_vars = array( |
| 26 | - 'load_css' => false, 'forms_loaded' => array(), |
|
| 27 | - 'created_entries' => array(), |
|
| 28 | - 'pro_is_authorized' => false, |
|
| 26 | + 'load_css' => false, 'forms_loaded' => array(), |
|
| 27 | + 'created_entries' => array(), |
|
| 28 | + 'pro_is_authorized' => false, |
|
| 29 | 29 | ); |
| 30 | 30 | |
| 31 | 31 | function frm_forms_autoloader( $class_name ) { |
| 32 | - // Only load Frm classes here |
|
| 32 | + // Only load Frm classes here |
|
| 33 | 33 | if ( ! preg_match( '/^Frm.+$/', $class_name ) ) { |
| 34 | - return; |
|
| 35 | - } |
|
| 34 | + return; |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - $filepath = dirname(__FILE__); |
|
| 37 | + $filepath = dirname(__FILE__); |
|
| 38 | 38 | if ( preg_match( '/^FrmPro.+$/', $class_name ) || 'FrmUpdatesController' == $class_name ) { |
| 39 | - $filepath .= '/pro'; |
|
| 40 | - } |
|
| 41 | - $filepath .= '/classes'; |
|
| 39 | + $filepath .= '/pro'; |
|
| 40 | + } |
|
| 41 | + $filepath .= '/classes'; |
|
| 42 | 42 | |
| 43 | 43 | if ( preg_match( '/^.+Helper$/', $class_name ) ) { |
| 44 | - $filepath .= '/helpers/'; |
|
| 44 | + $filepath .= '/helpers/'; |
|
| 45 | 45 | } else if ( preg_match( '/^.+Controller$/', $class_name ) ) { |
| 46 | - $filepath .= '/controllers/'; |
|
| 47 | - } else { |
|
| 48 | - $filepath .= '/models/'; |
|
| 49 | - } |
|
| 46 | + $filepath .= '/controllers/'; |
|
| 47 | + } else { |
|
| 48 | + $filepath .= '/models/'; |
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | 51 | $filepath .= $class_name . '.php'; |
| 52 | 52 | |
| 53 | - if ( file_exists($filepath) ) { |
|
| 54 | - include($filepath); |
|
| 55 | - } |
|
| 53 | + if ( file_exists($filepath) ) { |
|
| 54 | + include($filepath); |
|
| 55 | + } |
|
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // if __autoload is active, put it on the spl_autoload stack |
| 59 | 59 | if ( is_array(spl_autoload_functions()) && in_array( '__autoload', spl_autoload_functions()) ) { |
| 60 | - spl_autoload_register('__autoload'); |
|
| 60 | + spl_autoload_register('__autoload'); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Add the autoloader |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | return; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - $filepath = dirname(__FILE__); |
|
| 37 | + $filepath = dirname( __FILE__ ); |
|
| 38 | 38 | if ( preg_match( '/^FrmPro.+$/', $class_name ) || 'FrmUpdatesController' == $class_name ) { |
| 39 | 39 | $filepath .= '/pro'; |
| 40 | 40 | } |
@@ -50,25 +50,25 @@ discard block |
||
| 50 | 50 | |
| 51 | 51 | $filepath .= $class_name . '.php'; |
| 52 | 52 | |
| 53 | - if ( file_exists($filepath) ) { |
|
| 54 | - include($filepath); |
|
| 53 | + if ( file_exists( $filepath ) ) { |
|
| 54 | + include( $filepath ); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | 58 | // if __autoload is active, put it on the spl_autoload stack |
| 59 | -if ( is_array(spl_autoload_functions()) && in_array( '__autoload', spl_autoload_functions()) ) { |
|
| 60 | - spl_autoload_register('__autoload'); |
|
| 59 | +if ( is_array( spl_autoload_functions() ) && in_array( '__autoload', spl_autoload_functions() ) ) { |
|
| 60 | + spl_autoload_register( '__autoload' ); |
|
| 61 | 61 | } |
| 62 | 62 | |
| 63 | 63 | // Add the autoloader |
| 64 | -spl_autoload_register('frm_forms_autoloader'); |
|
| 64 | +spl_autoload_register( 'frm_forms_autoloader' ); |
|
| 65 | 65 | |
| 66 | -$frm_path = dirname(__FILE__); |
|
| 67 | -if ( file_exists($frm_path . '/pro/formidable-pro.php') ) { |
|
| 66 | +$frm_path = dirname( __FILE__ ); |
|
| 67 | +if ( file_exists( $frm_path . '/pro/formidable-pro.php' ) ) { |
|
| 68 | 68 | include( $frm_path . '/pro/formidable-pro.php' ); |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | FrmHooksController::trigger_load_hook(); |
| 72 | 72 | |
| 73 | 73 | include_once( $frm_path . '/deprecated.php' ); |
| 74 | -unset($frm_path); |
|
| 74 | +unset( $frm_path ); |
|
@@ -1,22 +1,22 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | if ( ! is_array($field['options']) ) { |
| 3 | - return; |
|
| 3 | + return; |
|
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | foreach ( $field['options'] as $opt_key => $opt ) { |
| 7 | - $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field); |
|
| 8 | - $opt = apply_filters('frm_field_label_seen', $opt, $opt_key, $field); |
|
| 7 | + $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field); |
|
| 8 | + $opt = apply_filters('frm_field_label_seen', $opt, $opt_key, $field); |
|
| 9 | 9 | |
| 10 | - // Get string for Other text field, if needed |
|
| 10 | + // Get string for Other text field, if needed |
|
| 11 | 11 | $other_val = FrmFieldsHelper::get_other_val( compact( 'opt_key', 'field' ) ); |
| 12 | 12 | |
| 13 | - $checked = ( $other_val || isset($field['value']) && (( ! is_array($field['value']) && $field['value'] == $field_val ) || (is_array($field['value']) && in_array($field_val, $field['value']) ) ) ) ? ' checked="checked"':''; |
|
| 13 | + $checked = ( $other_val || isset($field['value']) && (( ! is_array($field['value']) && $field['value'] == $field_val ) || (is_array($field['value']) && in_array($field_val, $field['value']) ) ) ) ? ' checked="checked"':''; |
|
| 14 | 14 | |
| 15 | 15 | if ( FrmFieldsHelper::is_other_opt( $opt_key ) ) { |
| 16 | 16 | include( FrmAppHelper::plugin_path() . '/pro/classes/views/frmpro-fields/other-option.php' ); |
| 17 | - } else { |
|
| 17 | + } else { |
|
| 18 | 18 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/single-option.php' ); |
| 19 | - } |
|
| 19 | + } |
|
| 20 | 20 | |
| 21 | - unset($checked, $other_val); |
|
| 21 | + unset($checked, $other_val); |
|
| 22 | 22 | } |
@@ -1,16 +1,16 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | -if ( ! is_array($field['options']) ) { |
|
| 2 | +if ( ! is_array( $field['options'] ) ) { |
|
| 3 | 3 | return; |
| 4 | 4 | } |
| 5 | 5 | |
| 6 | 6 | foreach ( $field['options'] as $opt_key => $opt ) { |
| 7 | - $field_val = apply_filters('frm_field_value_saved', $opt, $opt_key, $field); |
|
| 8 | - $opt = apply_filters('frm_field_label_seen', $opt, $opt_key, $field); |
|
| 7 | + $field_val = apply_filters( 'frm_field_value_saved', $opt, $opt_key, $field ); |
|
| 8 | + $opt = apply_filters( 'frm_field_label_seen', $opt, $opt_key, $field ); |
|
| 9 | 9 | |
| 10 | 10 | // Get string for Other text field, if needed |
| 11 | 11 | $other_val = FrmFieldsHelper::get_other_val( compact( 'opt_key', 'field' ) ); |
| 12 | 12 | |
| 13 | - $checked = ( $other_val || isset($field['value']) && (( ! is_array($field['value']) && $field['value'] == $field_val ) || (is_array($field['value']) && in_array($field_val, $field['value']) ) ) ) ? ' checked="checked"':''; |
|
| 13 | + $checked = ( $other_val || isset( $field['value'] ) && ( ( ! is_array( $field['value'] ) && $field['value'] == $field_val ) || ( is_array( $field['value'] ) && in_array( $field_val, $field['value'] ) ) ) ) ? ' checked="checked"' : ''; |
|
| 14 | 14 | |
| 15 | 15 | if ( FrmFieldsHelper::is_other_opt( $opt_key ) ) { |
| 16 | 16 | include( FrmAppHelper::plugin_path() . '/pro/classes/views/frmpro-fields/other-option.php' ); |
@@ -18,5 +18,5 @@ discard block |
||
| 18 | 18 | include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/single-option.php' ); |
| 19 | 19 | } |
| 20 | 20 | |
| 21 | - unset($checked, $other_val); |
|
| 21 | + unset( $checked, $other_val ); |
|
| 22 | 22 | } |