@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | * @return void |
| 31 | 31 | */ |
| 32 | 32 | private function add_hooks() { |
| 33 | - add_filter( 'gravityview/edit_entry/field_value_post_custom_field', array( $this, 'edit_entry_field_value'), 10, 2 ); |
|
| 33 | + add_filter( 'gravityview/edit_entry/field_value_post_custom_field', array( $this, 'edit_entry_field_value' ), 10, 2 ); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public function edit_entry_field_value( $field_value, $field ) { |
| 47 | 47 | |
| 48 | - if( 'list' === $field->inputType ) { |
|
| 48 | + if ( 'list' === $field->inputType ) { |
|
| 49 | 49 | $field_value = is_string( $field_value ) ? json_decode( $field_value, true ) : $field_value; |
| 50 | 50 | |
| 51 | 51 | if ( ! is_array( $field_value ) ) { |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | function parse_um_profile_post_content( $args = array() ) { |
| 44 | 44 | global $ultimatemember; |
| 45 | 45 | |
| 46 | - if( ! $ultimatemember || ! is_object( $ultimatemember ) || ! class_exists( 'GravityView_View_Data' ) ) { |
|
| 46 | + if ( ! $ultimatemember || ! is_object( $ultimatemember ) || ! class_exists( 'GravityView_View_Data' ) ) { |
|
| 47 | 47 | return; |
| 48 | 48 | } |
| 49 | 49 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | return; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - GravityView_View_Data::getInstance()->parse_post_content( $active_tab[0]->post_content ); |
|
| 62 | + GravityView_View_Data::getInstance()->parse_post_content( $active_tab[ 0 ]->post_content ); |
|
| 63 | 63 | |
| 64 | 64 | wp_reset_postdata(); |
| 65 | 65 | } |
@@ -91,9 +91,9 @@ discard block |
||
| 91 | 91 | private function maybe_add_hooks() { |
| 92 | 92 | $class_exists = $this->class_name && class_exists( $this->class_name ); |
| 93 | 93 | $function_exists = $this->function_name && function_exists( $this->function_name ); |
| 94 | - $constant_defined = $this->constant_name && defined("{$this->constant_name}"); |
|
| 94 | + $constant_defined = $this->constant_name && defined( "{$this->constant_name}" ); |
|
| 95 | 95 | |
| 96 | - if( $class_exists || $function_exists || $constant_defined ) { |
|
| 96 | + if ( $class_exists || $function_exists || $constant_defined ) { |
|
| 97 | 97 | $this->add_hooks(); |
| 98 | 98 | } |
| 99 | 99 | } |
@@ -104,19 +104,19 @@ discard block |
||
| 104 | 104 | * @return void |
| 105 | 105 | */ |
| 106 | 106 | protected function add_hooks() { |
| 107 | - if( $this->content_meta_keys ) { |
|
| 107 | + if ( $this->content_meta_keys ) { |
|
| 108 | 108 | add_filter( 'gravityview/data/parse/meta_keys', array( $this, 'merge_content_meta_keys' ), 10, 2 ); |
| 109 | 109 | } |
| 110 | 110 | |
| 111 | - if( $this->script_handles ) { |
|
| 111 | + if ( $this->script_handles ) { |
|
| 112 | 112 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'merge_noconflict_scripts' ) ); |
| 113 | 113 | } |
| 114 | 114 | |
| 115 | - if( $this->style_handles ) { |
|
| 115 | + if ( $this->style_handles ) { |
|
| 116 | 116 | add_filter( 'gravityview_noconflict_styles', array( $this, 'merge_noconflict_styles' ) ); |
| 117 | 117 | } |
| 118 | 118 | |
| 119 | - if( $this->post_type_support ) { |
|
| 119 | + if ( $this->post_type_support ) { |
|
| 120 | 120 | add_filter( 'gravityview_post_type_support', array( $this, 'merge_post_type_support' ), 10, 2 ); |
| 121 | 121 | } |
| 122 | 122 | } |
@@ -49,17 +49,17 @@ discard block |
||
| 49 | 49 | * |
| 50 | 50 | * @return string If a custom field label isn't set, return the field label for the password field |
| 51 | 51 | */ |
| 52 | - function field_label( $label = '', $field = array(), $form = array(), $entry = array() ){ |
|
| 52 | + function field_label( $label = '', $field = array(), $form = array(), $entry = array() ) { |
|
| 53 | 53 | |
| 54 | 54 | // If using a custom label, no need to fetch the parent label |
| 55 | - if( ! is_numeric( $field['id'] ) || ! empty( $field['custom_label'] ) ) { |
|
| 55 | + if ( ! is_numeric( $field[ 'id' ] ) || ! empty( $field[ 'custom_label' ] ) ) { |
|
| 56 | 56 | return $label; |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - $field_object = GFFormsModel::get_field( $form, $field['id'] ); |
|
| 59 | + $field_object = GFFormsModel::get_field( $form, $field[ 'id' ] ); |
|
| 60 | 60 | |
| 61 | - if( $field_object && 'password' === $field_object->type ) { |
|
| 62 | - $label = $field['label']; |
|
| 61 | + if ( $field_object && 'password' === $field_object->type ) { |
|
| 62 | + $label = $field[ 'label' ]; |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | return $label; |
@@ -79,17 +79,17 @@ discard block |
||
| 79 | 79 | function add_form_fields( $fields = array(), $form = array(), $include_parent_field = true ) { |
| 80 | 80 | |
| 81 | 81 | foreach ( $fields as $key => $field ) { |
| 82 | - if( 'password' === $field['type'] ) { |
|
| 82 | + if ( 'password' === $field[ 'type' ] ) { |
|
| 83 | 83 | |
| 84 | 84 | // The Enter Password input |
| 85 | - if( floor( $key ) === floatval( $key ) ) { |
|
| 85 | + if ( floor( $key ) === floatval( $key ) ) { |
|
| 86 | 86 | |
| 87 | - if( ! empty( $field['parent'] ) ) { |
|
| 88 | - $field['label'] = $field['parent']->label; |
|
| 89 | - $field['adminOnly'] = $field['parent']->adminOnly; |
|
| 90 | - $field['adminLabel'] = $field['parent']->adminLabel; |
|
| 87 | + if ( ! empty( $field[ 'parent' ] ) ) { |
|
| 88 | + $field[ 'label' ] = $field[ 'parent' ]->label; |
|
| 89 | + $field[ 'adminOnly' ] = $field[ 'parent' ]->adminOnly; |
|
| 90 | + $field[ 'adminLabel' ] = $field[ 'parent' ]->adminLabel; |
|
| 91 | 91 | // Don't show as a child input |
| 92 | - unset( $field['parent'] ); |
|
| 92 | + unset( $field[ 'parent' ] ); |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | $fields[ $key ] = $field; |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | * Prevent Divi from adding their stuff to GV pages |
| 35 | 35 | */ |
| 36 | 36 | public function add_hooks_admin_init() { |
| 37 | - if( GravityView_Admin::is_admin_page() ) { |
|
| 37 | + if ( GravityView_Admin::is_admin_page() ) { |
|
| 38 | 38 | // Prevent Divi from adding import/export modal dialog |
| 39 | 39 | remove_action( 'admin_init', 'et_pb_register_builder_portabilities' ); |
| 40 | 40 | |
@@ -10,8 +10,8 @@ discard block |
||
| 10 | 10 | $search_field = $gravityview_view->search_field; |
| 11 | 11 | |
| 12 | 12 | // Make sure that there are choices to display |
| 13 | -if( empty( $search_field['choices'] ) ) { |
|
| 14 | - do_action('gravityview_log_debug', 'search-field-select.php - No choices for field' ); |
|
| 13 | +if ( empty( $search_field[ 'choices' ] ) ) { |
|
| 14 | + do_action( 'gravityview_log_debug', 'search-field-select.php - No choices for field' ); |
|
| 15 | 15 | return; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -21,19 +21,19 @@ discard block |
||
| 21 | 21 | * @param string $default_option Default: `—` (—) |
| 22 | 22 | * @param string $field_type Field type: "select" or "multiselect" |
| 23 | 23 | */ |
| 24 | -$default_option = apply_filters('gravityview/extension/search/select_default', '—', 'select' ); |
|
| 24 | +$default_option = apply_filters( 'gravityview/extension/search/select_default', '—', 'select' ); |
|
| 25 | 25 | |
| 26 | 26 | ?> |
| 27 | 27 | <div class="gv-search-box gv-search-field-select"> |
| 28 | - <?php if( ! gv_empty( $search_field['label'], false ) ) { ?> |
|
| 29 | - <label for="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"><?php echo esc_html( $search_field['label'] ); ?></label> |
|
| 28 | + <?php if ( ! gv_empty( $search_field[ 'label' ], false ) ) { ?> |
|
| 29 | + <label for="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"><?php echo esc_html( $search_field[ 'label' ] ); ?></label> |
|
| 30 | 30 | <?php } ?> |
| 31 | 31 | <p> |
| 32 | - <select name="<?php echo esc_attr( $search_field['name'] ); ?>" id="search-box-<?php echo esc_attr( $search_field['name'] ); ?>"> |
|
| 33 | - <option value="" <?php gv_selected( '', $search_field['value'], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
| 32 | + <select name="<?php echo esc_attr( $search_field[ 'name' ] ); ?>" id="search-box-<?php echo esc_attr( $search_field[ 'name' ] ); ?>"> |
|
| 33 | + <option value="" <?php gv_selected( '', $search_field[ 'value' ], true ); ?>><?php echo esc_html( $default_option ); ?></option> |
|
| 34 | 34 | <?php |
| 35 | - foreach( $search_field['choices'] as $choice ) : ?> |
|
| 36 | - <option value="<?php echo esc_attr( $choice['value'] ); ?>" <?php gv_selected( esc_attr( $choice['value'] ), esc_attr( $search_field['value'] ), true ); ?>><?php echo esc_html( $choice['text'] ); ?></option> |
|
| 35 | + foreach ( $search_field[ 'choices' ] as $choice ) : ?> |
|
| 36 | + <option value="<?php echo esc_attr( $choice[ 'value' ] ); ?>" <?php gv_selected( esc_attr( $choice[ 'value' ] ), esc_attr( $search_field[ 'value' ] ), true ); ?>><?php echo esc_html( $choice[ 'text' ] ); ?></option> |
|
| 37 | 37 | <?php endforeach; ?> |
| 38 | 38 | </select> |
| 39 | 39 | </p> |
@@ -38,13 +38,13 @@ discard block |
||
| 38 | 38 | /** @var WP_Admin_Bar $wp_admin_bar */ |
| 39 | 39 | global $wp_admin_bar; |
| 40 | 40 | |
| 41 | - if( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
| 41 | + if ( is_admin() || ! GVCommon::has_cap( array( 'edit_gravityviews', 'gravityview_edit_entry', 'gravityforms_edit_forms' ) ) ) { |
|
| 42 | 42 | return; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | $view_data = GravityView_View_Data::getInstance()->get_views(); |
| 46 | 46 | |
| 47 | - if( empty( $view_data ) ) { |
|
| 47 | + if ( empty( $view_data ) ) { |
|
| 48 | 48 | return; |
| 49 | 49 | } |
| 50 | 50 | |
@@ -104,9 +104,9 @@ discard block |
||
| 104 | 104 | 'parent' => 'gravityview', |
| 105 | 105 | 'title' => __( 'Edit Entry', 'gravityview' ), |
| 106 | 106 | 'meta' => array( |
| 107 | - 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry['id'], $entry ) ), |
|
| 107 | + 'title' => sprintf( __( 'Edit Entry %s', 'gravityview' ), GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ) ), |
|
| 108 | 108 | ), |
| 109 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry['form_id'], $entry['id'] ) ) ), |
|
| 109 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_entries&screen_mode=edit&view=entry&id=%d&lid=%d', $entry[ 'form_id' ], $entry[ 'id' ] ) ) ), |
|
| 110 | 110 | ) ); |
| 111 | 111 | |
| 112 | 112 | } |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | /** @var WP_Admin_Bar $wp_admin_bar */ |
| 123 | 123 | global $wp_admin_bar; |
| 124 | 124 | |
| 125 | - if( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
| 125 | + if ( GVCommon::has_cap( array( 'edit_gravityviews', 'edit_gravityview', 'gravityforms_edit_forms' ) ) ) { |
|
| 126 | 126 | |
| 127 | 127 | $view_data = GravityView_View_Data::getInstance(); |
| 128 | 128 | |
@@ -139,32 +139,32 @@ discard block |
||
| 139 | 139 | $edit_view_title = __( 'Edit View', 'gravityview' ); |
| 140 | 140 | $edit_form_title = __( 'Edit Form', 'gravityview' ); |
| 141 | 141 | |
| 142 | - if( sizeof( $views ) > 1 ) { |
|
| 143 | - $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view['id'] ); |
|
| 144 | - $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $view['form_id'] ); |
|
| 142 | + if ( sizeof( $views ) > 1 ) { |
|
| 143 | + $edit_view_title = sprintf( _x( 'Edit View #%d', 'Edit View with the ID of %d', 'gravityview' ), $view[ 'id' ] ); |
|
| 144 | + $edit_form_title = sprintf( __( 'Edit Form #%d', 'Edit Form with the ID of %d', 'gravityview' ), $view[ 'form_id' ] ); |
|
| 145 | 145 | } |
| 146 | 146 | |
| 147 | - if( GVCommon::has_cap( 'edit_gravityview', $view['id'] ) && ! in_array( $view['id'], $added_views ) ) { |
|
| 147 | + if ( GVCommon::has_cap( 'edit_gravityview', $view[ 'id' ] ) && ! in_array( $view[ 'id' ], $added_views ) ) { |
|
| 148 | 148 | |
| 149 | - $added_views[] = $view['id']; |
|
| 149 | + $added_views[ ] = $view[ 'id' ]; |
|
| 150 | 150 | |
| 151 | 151 | $wp_admin_bar->add_menu( array( |
| 152 | - 'id' => 'edit-view-' . $view['id'], |
|
| 152 | + 'id' => 'edit-view-' . $view[ 'id' ], |
|
| 153 | 153 | 'parent' => 'gravityview', |
| 154 | 154 | 'title' => $edit_view_title, |
| 155 | - 'href' => esc_url_raw( admin_url( sprintf( 'post.php?post=%d&action=edit', $view['id'] ) ) ), |
|
| 155 | + 'href' => esc_url_raw( admin_url( sprintf( 'post.php?post=%d&action=edit', $view[ 'id' ] ) ) ), |
|
| 156 | 156 | ) ); |
| 157 | 157 | } |
| 158 | 158 | |
| 159 | - if ( ! empty( $view['form_id'] ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $view['form_id'] ) && ! in_array( $view['form_id'], $added_forms ) ) { |
|
| 159 | + if ( ! empty( $view[ 'form_id' ] ) && GVCommon::has_cap( array( 'gravityforms_edit_forms' ), $view[ 'form_id' ] ) && ! in_array( $view[ 'form_id' ], $added_forms ) ) { |
|
| 160 | 160 | |
| 161 | - $added_forms[] = $view['form_id']; |
|
| 161 | + $added_forms[ ] = $view[ 'form_id' ]; |
|
| 162 | 162 | |
| 163 | 163 | $wp_admin_bar->add_menu( array( |
| 164 | - 'id' => 'edit-form-' . $view['form_id'], |
|
| 164 | + 'id' => 'edit-form-' . $view[ 'form_id' ], |
|
| 165 | 165 | 'parent' => 'gravityview', |
| 166 | 166 | 'title' => $edit_form_title, |
| 167 | - 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $view['form_id'] ) ) ), |
|
| 167 | + 'href' => esc_url_raw( admin_url( sprintf( 'admin.php?page=gf_edit_forms&id=%d', $view[ 'form_id' ] ) ) ), |
|
| 168 | 168 | ) ); |
| 169 | 169 | } |
| 170 | 170 | } |
@@ -32,19 +32,19 @@ discard block |
||
| 32 | 32 | // If there's an overriding CSS file in the current template folder, use it. |
| 33 | 33 | $template_css_path = trailingslashit( get_stylesheet_directory() ) . 'gravityview/css/' . $css_file; |
| 34 | 34 | |
| 35 | - if( file_exists( $template_css_path ) ) { |
|
| 35 | + if ( file_exists( $template_css_path ) ) { |
|
| 36 | 36 | $path = trailingslashit( get_stylesheet_directory_uri() ) . 'gravityview/css/' . $css_file; |
| 37 | - do_action( 'gravityview_log_debug', __FUNCTION__ . ': Stylesheet override ('. esc_attr( $css_file ) .')' ); |
|
| 37 | + do_action( 'gravityview_log_debug', __FUNCTION__ . ': Stylesheet override (' . esc_attr( $css_file ) . ')' ); |
|
| 38 | 38 | } else { |
| 39 | 39 | // Default: use GravityView CSS file |
| 40 | 40 | |
| 41 | 41 | // If no path is provided, assume default plugin templates CSS folder |
| 42 | - if( '' === $dir_path ) { |
|
| 42 | + if ( '' === $dir_path ) { |
|
| 43 | 43 | $dir_path = GRAVITYVIEW_DIR . 'templates/css/'; |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | // plugins_url() expects a path to a file, not directory. We append a file to be stripped. |
| 47 | - $path = plugins_url( $css_file, trailingslashit( $dir_path ) . 'stripped-by-plugin_basename.php' ); |
|
| 47 | + $path = plugins_url( $css_file, trailingslashit( $dir_path ) . 'stripped-by-plugin_basename.php' ); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | return $path; |
@@ -82,9 +82,9 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $parsed_permalink = parse_url( get_permalink( $id ) ); |
| 84 | 84 | |
| 85 | - $permalink_args = isset( $parsed_permalink['query'] ) ? $parsed_permalink['query'] : false; |
|
| 85 | + $permalink_args = isset( $parsed_permalink[ 'query' ] ) ? $parsed_permalink[ 'query' ] : false; |
|
| 86 | 86 | |
| 87 | - if( empty( $permalink_args ) ) { |
|
| 87 | + if ( empty( $permalink_args ) ) { |
|
| 88 | 88 | return array(); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -109,15 +109,15 @@ discard block |
||
| 109 | 109 | function gv_selected( $value, $current, $echo = true, $type = 'selected' ) { |
| 110 | 110 | |
| 111 | 111 | $output = ''; |
| 112 | - if( is_array( $current ) ) { |
|
| 113 | - if( in_array( $value, $current ) ) { |
|
| 112 | + if ( is_array( $current ) ) { |
|
| 113 | + if ( in_array( $value, $current ) ) { |
|
| 114 | 114 | $output = __checked_selected_helper( true, true, false, $type ); |
| 115 | 115 | } |
| 116 | 116 | } else { |
| 117 | 117 | $output = __checked_selected_helper( $value, $current, false, $type ); |
| 118 | 118 | } |
| 119 | 119 | |
| 120 | - if( $echo ) { |
|
| 120 | + if ( $echo ) { |
|
| 121 | 121 | echo $output; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | |
| 128 | -if( ! function_exists( 'gravityview_sanitize_html_class' ) ) { |
|
| 128 | +if ( ! function_exists( 'gravityview_sanitize_html_class' ) ) { |
|
| 129 | 129 | |
| 130 | 130 | /** |
| 131 | 131 | * sanitize_html_class doesn't handle spaces (multiple classes). We remedy that. |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | */ |
| 172 | 172 | function gravityview_strip_whitespace( $string ) { |
| 173 | 173 | $string = normalize_whitespace( $string ); |
| 174 | - return preg_replace('/[\r\n\t ]+/', ' ', $string ); |
|
| 174 | + return preg_replace( '/[\r\n\t ]+/', ' ', $string ); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | /** |
@@ -185,7 +185,7 @@ discard block |
||
| 185 | 185 | * @return string Included file contents |
| 186 | 186 | */ |
| 187 | 187 | function gravityview_ob_include( $file_path, $object = NULL ) { |
| 188 | - if( ! file_exists( $file_path ) ) { |
|
| 188 | + if ( ! file_exists( $file_path ) ) { |
|
| 189 | 189 | do_action( 'gravityview_log_error', __FUNCTION__ . ': File path does not exist. ', $file_path ); |
| 190 | 190 | return ''; |
| 191 | 191 | } |
@@ -203,7 +203,7 @@ discard block |
||
| 203 | 203 | |
| 204 | 204 | $width = $height * 0.7586206897; |
| 205 | 205 | |
| 206 | - if( function_exists('is_rtl') && is_rtl() ) { |
|
| 206 | + if ( function_exists( 'is_rtl' ) && is_rtl() ) { |
|
| 207 | 207 | $style = 'margin:10px 10px 10px 0;'; |
| 208 | 208 | $class = 'alignright'; |
| 209 | 209 | } else { |
@@ -211,7 +211,7 @@ discard block |
||
| 211 | 211 | $class = 'alignleft'; |
| 212 | 212 | } |
| 213 | 213 | |
| 214 | - return '<img src="'.plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ).'" class="'.$class.'" height="'.intval( $height ).'" width="'.round( $width, 2 ).'" alt="The GravityView Astronaut Says:" style="'.$style.'" />'; |
|
| 214 | + return '<img src="' . plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) . '" class="' . $class . '" height="' . intval( $height ) . '" width="' . round( $width, 2 ) . '" alt="The GravityView Astronaut Says:" style="' . $style . '" />'; |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | /** |
@@ -234,9 +234,9 @@ discard block |
||
| 234 | 234 | function gravityview_number_format( $number, $decimals = '' ) { |
| 235 | 235 | global $wp_locale; |
| 236 | 236 | |
| 237 | - if( '' === $decimals ) { |
|
| 237 | + if ( '' === $decimals ) { |
|
| 238 | 238 | |
| 239 | - $decimal_point = isset( $wp_locale ) ? $wp_locale->number_format['decimal_point'] : '.'; |
|
| 239 | + $decimal_point = isset( $wp_locale ) ? $wp_locale->number_format[ 'decimal_point' ] : '.'; |
|
| 240 | 240 | |
| 241 | 241 | /** |
| 242 | 242 | * Calculate the position of the decimal point in the number |
@@ -265,7 +265,7 @@ discard block |
||
| 265 | 265 | $parts = parse_url( $value ); |
| 266 | 266 | |
| 267 | 267 | // No domain? Strange...show the original text. |
| 268 | - if( empty( $parts['host'] ) ) { |
|
| 268 | + if ( empty( $parts[ 'host' ] ) ) { |
|
| 269 | 269 | return $value; |
| 270 | 270 | } |
| 271 | 271 | |
@@ -278,16 +278,16 @@ discard block |
||
| 278 | 278 | * @param boolean $enable Whether to strip the scheme. Return false to show scheme. (default: true)\n |
| 279 | 279 | * If true: `http://example.com => example.com` |
| 280 | 280 | */ |
| 281 | - if( false === apply_filters('gravityview_anchor_text_striphttp', true) ) { |
|
| 281 | + if ( false === apply_filters( 'gravityview_anchor_text_striphttp', true ) ) { |
|
| 282 | 282 | |
| 283 | - if( isset( $parts['scheme'] ) ) { |
|
| 284 | - $return .= $parts['scheme']; |
|
| 283 | + if ( isset( $parts[ 'scheme' ] ) ) { |
|
| 284 | + $return .= $parts[ 'scheme' ]; |
|
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | // The domain, which may contain a subdomain |
| 290 | - $domain = $parts['host']; |
|
| 290 | + $domain = $parts[ 'host' ]; |
|
| 291 | 291 | |
| 292 | 292 | /** |
| 293 | 293 | * @filter `gravityview_anchor_text_stripwww` Strip www from the domain? |
@@ -295,10 +295,10 @@ discard block |
||
| 295 | 295 | * @param boolean $enable Whether to strip www. Return false to show www. (default: true)\n |
| 296 | 296 | * If true: `www.example.com => example.com` |
| 297 | 297 | */ |
| 298 | - $strip_www = apply_filters('gravityview_anchor_text_stripwww', true ); |
|
| 298 | + $strip_www = apply_filters( 'gravityview_anchor_text_stripwww', true ); |
|
| 299 | 299 | |
| 300 | - if( $strip_www ) { |
|
| 301 | - $domain = str_replace('www.', '', $domain ); |
|
| 300 | + if ( $strip_www ) { |
|
| 301 | + $domain = str_replace( 'www.', '', $domain ); |
|
| 302 | 302 | } |
| 303 | 303 | |
| 304 | 304 | /** |
@@ -308,11 +308,11 @@ discard block |
||
| 308 | 308 | * If true: `http://demo.example.com => example.com` \n |
| 309 | 309 | * If false: `http://demo.example.com => demo.example.com` |
| 310 | 310 | */ |
| 311 | - $strip_subdomains = apply_filters('gravityview_anchor_text_nosubdomain', true); |
|
| 311 | + $strip_subdomains = apply_filters( 'gravityview_anchor_text_nosubdomain', true ); |
|
| 312 | 312 | |
| 313 | - if( $strip_subdomains ) { |
|
| 313 | + if ( $strip_subdomains ) { |
|
| 314 | 314 | |
| 315 | - $domain = _gravityview_strip_subdomain( $parts['host'] ); |
|
| 315 | + $domain = _gravityview_strip_subdomain( $parts[ 'host' ] ); |
|
| 316 | 316 | |
| 317 | 317 | } |
| 318 | 318 | |
@@ -326,12 +326,12 @@ discard block |
||
| 326 | 326 | * If true: `http://example.com/sub/directory/page.html => example.com` \n |
| 327 | 327 | * If false: `http://example.com/sub/directory/page.html => example.com/sub/directory/page.html` |
| 328 | 328 | */ |
| 329 | - $root_only = apply_filters('gravityview_anchor_text_rootonly', true); |
|
| 329 | + $root_only = apply_filters( 'gravityview_anchor_text_rootonly', true ); |
|
| 330 | 330 | |
| 331 | - if( empty( $root_only ) ) { |
|
| 331 | + if ( empty( $root_only ) ) { |
|
| 332 | 332 | |
| 333 | - if( isset( $parts['path'] ) ) { |
|
| 334 | - $return .= $parts['path']; |
|
| 333 | + if ( isset( $parts[ 'path' ] ) ) { |
|
| 334 | + $return .= $parts[ 'path' ]; |
|
| 335 | 335 | } |
| 336 | 336 | } |
| 337 | 337 | |
@@ -341,12 +341,12 @@ discard block |
||
| 341 | 341 | * @param boolean $enable Whether to enable "root only". Return false to show full path. (default: true)\n |
| 342 | 342 | * If true: `http://example.com/?query=example => example.com` |
| 343 | 343 | */ |
| 344 | - $strip_query_string = apply_filters('gravityview_anchor_text_noquerystring', true ); |
|
| 344 | + $strip_query_string = apply_filters( 'gravityview_anchor_text_noquerystring', true ); |
|
| 345 | 345 | |
| 346 | - if( empty( $strip_query_string ) ) { |
|
| 346 | + if ( empty( $strip_query_string ) ) { |
|
| 347 | 347 | |
| 348 | - if( isset( $parts['query'] ) ) { |
|
| 349 | - $return .= '?'.$parts['query']; |
|
| 348 | + if ( isset( $parts[ 'query' ] ) ) { |
|
| 349 | + $return .= '?' . $parts[ 'query' ]; |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | } |
@@ -363,8 +363,8 @@ discard block |
||
| 363 | 363 | */ |
| 364 | 364 | function _gravityview_strip_subdomain( $string_maybe_has_subdomain ) { |
| 365 | 365 | |
| 366 | - if( preg_match("/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.(?:com\.|co\.|net\.|org\.|firm\.|me\.|school\.|law\.|gov\.|mod\.|msk\.|irkutsks\.|sa\.|act\.|police\.|plc\.|ac\.|tm\.|asso\.|biz\.|pro\.|cg\.|telememo\.)?[a-z\.]{2,6})$/i", $string_maybe_has_subdomain, $matches ) ) { |
|
| 367 | - return $matches['domain']; |
|
| 366 | + if ( preg_match( "/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.(?:com\.|co\.|net\.|org\.|firm\.|me\.|school\.|law\.|gov\.|mod\.|msk\.|irkutsks\.|sa\.|act\.|police\.|plc\.|ac\.|tm\.|asso\.|biz\.|pro\.|cg\.|telememo\.)?[a-z\.]{2,6})$/i", $string_maybe_has_subdomain, $matches ) ) { |
|
| 367 | + return $matches[ 'domain' ]; |
|
| 368 | 368 | } else { |
| 369 | 369 | return $string_maybe_has_subdomain; |
| 370 | 370 | } |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | */ |
| 386 | 386 | function gv_empty( $value, $zero_is_empty = true, $allow_string_booleans = true ) { |
| 387 | 387 | |
| 388 | - if( |
|
| 388 | + if ( |
|
| 389 | 389 | ! isset( $value ) // If it's not set, it's empty! |
| 390 | 390 | || false === $value |
| 391 | 391 | || null === $value |
@@ -396,20 +396,20 @@ discard block |
||
| 396 | 396 | return true; |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | - if( is_string( $value ) && $allow_string_booleans ) { |
|
| 399 | + if ( is_string( $value ) && $allow_string_booleans ) { |
|
| 400 | 400 | |
| 401 | 401 | $value = trim( $value ); |
| 402 | 402 | $value = strtolower( $value ); |
| 403 | 403 | |
| 404 | 404 | if ( in_array( $value, array( 'yes', 'true' ), true ) ) { |
| 405 | 405 | $value = true; |
| 406 | - } else if( in_array( $value, array( 'no', 'false' ), true ) ) { |
|
| 406 | + } else if ( in_array( $value, array( 'no', 'false' ), true ) ) { |
|
| 407 | 407 | $value = false; |
| 408 | 408 | } |
| 409 | 409 | } |
| 410 | 410 | |
| 411 | 411 | // If zero isn't empty, then if $value is a number and it's empty, it's zero. Thus, return false. |
| 412 | - if( ! $zero_is_empty && is_numeric( $value ) && empty( $value ) ) { |
|
| 412 | + if ( ! $zero_is_empty && is_numeric( $value ) && empty( $value ) ) { |
|
| 413 | 413 | return false; |
| 414 | 414 | } |
| 415 | 415 | |
@@ -432,7 +432,7 @@ discard block |
||
| 432 | 432 | |
| 433 | 433 | // Use the original function, if exists. |
| 434 | 434 | // Requires WP 4.4+ |
| 435 | - if( function_exists( 'map_deep') ) { |
|
| 435 | + if ( function_exists( 'map_deep' ) ) { |
|
| 436 | 436 | return map_deep( $value, $callback ); |
| 437 | 437 | } |
| 438 | 438 | |
@@ -497,7 +497,7 @@ discard block |
||
| 497 | 497 | |
| 498 | 498 | $exploded = explode( '.', "{$field_id}" ); |
| 499 | 499 | |
| 500 | - return isset( $exploded[1] ) ? intval( $exploded[1] ) : false; |
|
| 500 | + return isset( $exploded[ 1 ] ) ? intval( $exploded[ 1 ] ) : false; |
|
| 501 | 501 | } |
| 502 | 502 | |
| 503 | 503 | /** |
@@ -538,13 +538,13 @@ discard block |
||
| 538 | 538 | */ |
| 539 | 539 | $args = apply_filters( 'gravityview_get_terms_choices_args', $args ); |
| 540 | 540 | |
| 541 | - $terms = get_terms( $args['taxonomy'], $args ); |
|
| 541 | + $terms = get_terms( $args[ 'taxonomy' ], $args ); |
|
| 542 | 542 | |
| 543 | 543 | $choices = array(); |
| 544 | 544 | |
| 545 | 545 | if ( is_array( $terms ) ) { |
| 546 | 546 | foreach ( $terms as $term_id => $term_name ) { |
| 547 | - $choices[] = array( |
|
| 547 | + $choices[ ] = array( |
|
| 548 | 548 | 'text' => $term_name, |
| 549 | 549 | 'value' => $term_id |
| 550 | 550 | ); |
@@ -568,21 +568,21 @@ discard block |
||
| 568 | 568 | function _gravityview_process_posted_fields() { |
| 569 | 569 | $fields = array(); |
| 570 | 570 | |
| 571 | - if( !empty( $_POST['gv_fields'] ) ) { |
|
| 572 | - if ( ! is_array( $_POST['gv_fields'] ) ) { |
|
| 571 | + if ( ! empty( $_POST[ 'gv_fields' ] ) ) { |
|
| 572 | + if ( ! is_array( $_POST[ 'gv_fields' ] ) ) { |
|
| 573 | 573 | |
| 574 | 574 | // We are not using parse_str() due to max_input_vars limitation with large View configurations |
| 575 | 575 | $fields_holder = array(); |
| 576 | - GVCommon::gv_parse_str( $_POST['gv_fields'], $fields_holder ); |
|
| 576 | + GVCommon::gv_parse_str( $_POST[ 'gv_fields' ], $fields_holder ); |
|
| 577 | 577 | |
| 578 | - if ( isset( $fields_holder['fields'] ) ) { |
|
| 579 | - $fields = $fields_holder['fields']; |
|
| 578 | + if ( isset( $fields_holder[ 'fields' ] ) ) { |
|
| 579 | + $fields = $fields_holder[ 'fields' ]; |
|
| 580 | 580 | } else { |
| 581 | 581 | do_action( 'gravityview_log_error', '[save_postdata] No `fields` key was found after parsing $fields string', $fields_holder ); |
| 582 | 582 | } |
| 583 | 583 | |
| 584 | 584 | } else { |
| 585 | - $fields = $_POST['gv_fields']; |
|
| 585 | + $fields = $_POST[ 'gv_fields' ]; |
|
| 586 | 586 | } |
| 587 | 587 | } |
| 588 | 588 | |
@@ -12,10 +12,10 @@ |
||
| 12 | 12 | |
| 13 | 13 | $field_info_items = array(); |
| 14 | 14 | |
| 15 | - if( !empty( $this->item['description'] ) ) { |
|
| 15 | + if ( ! empty( $this->item[ 'description' ] ) ) { |
|
| 16 | 16 | |
| 17 | - $field_info_items[] = array( |
|
| 18 | - 'value' => $this->item['description'] |
|
| 17 | + $field_info_items[ ] = array( |
|
| 18 | + 'value' => $this->item[ 'description' ] |
|
| 19 | 19 | ); |
| 20 | 20 | |
| 21 | 21 | } |