@@ -42,16 +42,16 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | $args = wp_parse_args( $args, $defaults ); |
| 44 | 44 | |
| 45 | - $forms = gravityview_get_forms( (bool) $args['active'], (bool) $args['trash'] ); |
|
| 45 | + $forms = gravityview_get_forms( (bool)$args[ 'active' ], (bool)$args[ 'trash' ] ); |
|
| 46 | 46 | |
| 47 | - if( array() === $args['options'] ) { |
|
| 47 | + if ( array() === $args[ 'options' ] ) { |
|
| 48 | 48 | foreach ( $forms as $form ) { |
| 49 | 49 | |
| 50 | - if ( in_array( $form['id'], $args['exclude'] ) ) { |
|
| 50 | + if ( in_array( $form[ 'id' ], $args[ 'exclude' ] ) ) { |
|
| 51 | 51 | continue; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - $args['options'][ $form['id'] ] = esc_html( $form['title'] ); |
|
| 54 | + $args[ 'options' ][ $form[ 'id' ] ] = esc_html( $form[ 'title' ] ); |
|
| 55 | 55 | } |
| 56 | 56 | } |
| 57 | 57 | |
@@ -83,15 +83,15 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | $args = wp_parse_args( $args, $defaults ); |
| 85 | 85 | |
| 86 | - if( empty( $args['form_id'] ) ) { |
|
| 86 | + if ( empty( $args[ 'form_id' ] ) ) { |
|
| 87 | 87 | return ''; |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | - $fields = GVCommon::get_sortable_fields_array( $args['form_id'] ); |
|
| 90 | + $fields = GVCommon::get_sortable_fields_array( $args[ 'form_id' ] ); |
|
| 91 | 91 | |
| 92 | - if( array() === $args['options'] ) { |
|
| 92 | + if ( array() === $args[ 'options' ] ) { |
|
| 93 | 93 | foreach ( $fields as $field_id => $field ) { |
| 94 | - $args['options'][ $field_id ] = esc_html( $field['label'] ); |
|
| 94 | + $args[ 'options' ][ $field_id ] = esc_html( $field[ 'label' ] ); |
|
| 95 | 95 | } |
| 96 | 96 | } |
| 97 | 97 | |
@@ -127,43 +127,43 @@ discard block |
||
| 127 | 127 | $args = wp_parse_args( $args, $defaults ); |
| 128 | 128 | |
| 129 | 129 | $data_elements = ''; |
| 130 | - foreach ( $args['data'] as $key => $value ) { |
|
| 130 | + foreach ( $args[ 'data' ] as $key => $value ) { |
|
| 131 | 131 | $data_elements .= ' data-' . esc_attr( $key ) . '="' . esc_attr( $value ) . '"'; |
| 132 | 132 | } |
| 133 | 133 | |
| 134 | - if( $args['multiple'] ) { |
|
| 134 | + if ( $args[ 'multiple' ] ) { |
|
| 135 | 135 | $multiple = ' MULTIPLE'; |
| 136 | 136 | } else { |
| 137 | 137 | $multiple = ''; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if( $args['placeholder'] ) { |
|
| 141 | - $placeholder = $args['placeholder']; |
|
| 140 | + if ( $args[ 'placeholder' ] ) { |
|
| 141 | + $placeholder = $args[ 'placeholder' ]; |
|
| 142 | 142 | } else { |
| 143 | 143 | $placeholder = ''; |
| 144 | 144 | } |
| 145 | 145 | |
| 146 | - $disabled = $args['disabled'] ? ' disabled="disabled"' : ''; |
|
| 147 | - $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args['class'] ) ) ); |
|
| 148 | - $output = '<select name="' . esc_attr( $args['name'] ) . '" id="' . esc_attr( str_replace( '-', '_', $args['id'] ) ) . '" class="gravityview-select ' . $class . '"' . $multiple . $disabled . ' data-placeholder="' . $placeholder . '"'. $data_elements . '>'; |
|
| 146 | + $disabled = $args[ 'disabled' ] ? ' disabled="disabled"' : ''; |
|
| 147 | + $class = implode( ' ', array_map( 'sanitize_html_class', explode( ' ', $args[ 'class' ] ) ) ); |
|
| 148 | + $output = '<select name="' . esc_attr( $args[ 'name' ] ) . '" id="' . esc_attr( str_replace( '-', '_', $args[ 'id' ] ) ) . '" class="gravityview-select ' . $class . '"' . $multiple . $disabled . ' data-placeholder="' . $placeholder . '"' . $data_elements . '>'; |
|
| 149 | 149 | |
| 150 | - if ( ! empty( $args['options'] ) ) { |
|
| 150 | + if ( ! empty( $args[ 'options' ] ) ) { |
|
| 151 | 151 | |
| 152 | - if ( $args['show_option_none'] ) { |
|
| 153 | - if( $args['multiple'] ) { |
|
| 154 | - $selected = selected( true, in_array( -1, $args['selected'] ), false ); |
|
| 152 | + if ( $args[ 'show_option_none' ] ) { |
|
| 153 | + if ( $args[ 'multiple' ] ) { |
|
| 154 | + $selected = selected( true, in_array( -1, $args[ 'selected' ] ), false ); |
|
| 155 | 155 | } else { |
| 156 | - $selected = selected( $args['selected'], -1, false ); |
|
| 156 | + $selected = selected( $args[ 'selected' ], -1, false ); |
|
| 157 | 157 | } |
| 158 | - $output .= '<option value="-1"' . $selected . '>' . esc_html( $args['show_option_none'] ) . '</option>'; |
|
| 158 | + $output .= '<option value="-1"' . $selected . '>' . esc_html( $args[ 'show_option_none' ] ) . '</option>'; |
|
| 159 | 159 | } |
| 160 | 160 | |
| 161 | - foreach( $args['options'] as $key => $option ) { |
|
| 161 | + foreach ( $args[ 'options' ] as $key => $option ) { |
|
| 162 | 162 | |
| 163 | - if( $args['multiple'] && is_array( $args['selected'] ) ) { |
|
| 164 | - $selected = selected( true, in_array( $key, $args['selected'], true ), false ); |
|
| 163 | + if ( $args[ 'multiple' ] && is_array( $args[ 'selected' ] ) ) { |
|
| 164 | + $selected = selected( true, in_array( $key, $args[ 'selected' ], true ), false ); |
|
| 165 | 165 | } else { |
| 166 | - $selected = selected( $args['selected'], $key, false ); |
|
| 166 | + $selected = selected( $args[ 'selected' ], $key, false ); |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | $output .= '<option value="' . esc_attr( $key ) . '"' . $selected . '>' . esc_html( $option ) . '</option>'; |
@@ -43,12 +43,12 @@ 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 | |
| 50 | 50 | // @todo Support Ultimate Member 2.0 - for now, prevent fatal error |
| 51 | - if( ! isset( $ultimatemember->profile ) ) { |
|
| 51 | + if ( ! isset( $ultimatemember->profile ) ) { |
|
| 52 | 52 | return; |
| 53 | 53 | } |
| 54 | 54 | |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | return; |
| 65 | 65 | } |
| 66 | 66 | |
| 67 | - GravityView_View_Data::getInstance()->parse_post_content( $active_tab[0]->post_content ); |
|
| 67 | + GravityView_View_Data::getInstance()->parse_post_content( $active_tab[ 0 ]->post_content ); |
|
| 68 | 68 | |
| 69 | 69 | wp_reset_postdata(); |
| 70 | 70 | } |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | function filter_file_path( $file_path = '', $file_path_info = array(), $field_settings = array() ) { |
| 47 | 47 | |
| 48 | - $file_path = str_replace('www.dropbox.com', 'dl.dropboxusercontent.com', $file_path ); |
|
| 48 | + $file_path = str_replace( 'www.dropbox.com', 'dl.dropboxusercontent.com', $file_path ); |
|
| 49 | 49 | $file_path = str_replace( '?dl=0', '', $file_path ); |
| 50 | 50 | |
| 51 | 51 | return $file_path; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | public static function get_instance() { |
| 35 | 35 | |
| 36 | - if( ! self::$instance ) { |
|
| 36 | + if ( ! self::$instance ) { |
|
| 37 | 37 | self::$instance = new self; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | add_filter( 'members_get_capabilities', array( 'GravityView_Roles_Capabilities', 'merge_with_all_caps' ) ); |
| 57 | 57 | add_action( 'members_register_cap_groups', array( $this, 'members_register_cap_group' ), 20 ); |
| 58 | 58 | add_filter( 'user_has_cap', array( $this, 'filter_user_has_cap' ), 10, 4 ); |
| 59 | - add_action( 'admin_init', array( $this, 'add_caps') ); |
|
| 59 | + add_action( 'admin_init', array( $this, 'add_caps' ) ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | |
@@ -77,18 +77,18 @@ discard block |
||
| 77 | 77 | public function filter_user_has_cap( $usercaps = array(), $caps = array(), $args = array(), $user = NULL ) { |
| 78 | 78 | |
| 79 | 79 | // Empty caps_to_check array |
| 80 | - if( ! $usercaps || ! $caps ) { |
|
| 80 | + if ( ! $usercaps || ! $caps ) { |
|
| 81 | 81 | return $usercaps; |
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * Enable all GravityView caps_to_check if `gravityview_full_access` is enabled |
| 86 | 86 | */ |
| 87 | - if( ! empty( $usercaps['gravityview_full_access'] ) ) { |
|
| 87 | + if ( ! empty( $usercaps[ 'gravityview_full_access' ] ) ) { |
|
| 88 | 88 | |
| 89 | 89 | $all_gravityview_caps = self::all_caps(); |
| 90 | 90 | |
| 91 | - foreach( $all_gravityview_caps as $gv_cap ) { |
|
| 91 | + foreach ( $all_gravityview_caps as $gv_cap ) { |
|
| 92 | 92 | $usercaps[ $gv_cap ] = true; |
| 93 | 93 | } |
| 94 | 94 | |
@@ -306,7 +306,7 @@ discard block |
||
| 306 | 306 | $all = $administrator; |
| 307 | 307 | |
| 308 | 308 | // If role is set, return caps_to_check for just that role. |
| 309 | - if( $single_role ) { |
|
| 309 | + if ( $single_role ) { |
|
| 310 | 310 | $caps = isset( ${$single_role} ) ? ${$single_role} : false; |
| 311 | 311 | return $flat_array ? $caps : array( $single_role => $caps ); |
| 312 | 312 | } |
@@ -355,9 +355,9 @@ discard block |
||
| 355 | 355 | |
| 356 | 356 | if ( true === $allow_logged_out ) { |
| 357 | 357 | |
| 358 | - $all_caps = self::all_caps('editor'); |
|
| 358 | + $all_caps = self::all_caps( 'editor' ); |
|
| 359 | 359 | |
| 360 | - if( array_intersect( $all_caps, (array) $caps_to_check ) ) { |
|
| 360 | + if ( array_intersect( $all_caps, (array)$caps_to_check ) ) { |
|
| 361 | 361 | return true; |
| 362 | 362 | } |
| 363 | 363 | } |
@@ -378,13 +378,13 @@ discard block |
||
| 378 | 378 | $caps_to_check = self::maybe_add_full_access_caps( $caps_to_check ); |
| 379 | 379 | |
| 380 | 380 | foreach ( $caps_to_check as $cap ) { |
| 381 | - if( ! is_null( $object_id ) ) { |
|
| 381 | + if ( ! is_null( $object_id ) ) { |
|
| 382 | 382 | $has_cap = $user_id ? user_can( $user_id, $cap, $object_id ) : current_user_can( $cap, $object_id ); |
| 383 | 383 | } else { |
| 384 | 384 | $has_cap = $user_id ? user_can( $user_id, $cap ) : current_user_can( $cap ); |
| 385 | 385 | } |
| 386 | 386 | // At the first successful response, stop checking |
| 387 | - if( $has_cap ) { |
|
| 387 | + if ( $has_cap ) { |
|
| 388 | 388 | break; |
| 389 | 389 | } |
| 390 | 390 | } |
@@ -408,15 +408,15 @@ discard block |
||
| 408 | 408 | $all_gravityview_caps = self::all_caps(); |
| 409 | 409 | |
| 410 | 410 | // Are there any $caps_to_check that are from GravityView? |
| 411 | - if( $has_gravityview_caps = array_intersect( $caps_to_check, $all_gravityview_caps ) ) { |
|
| 412 | - $caps_to_check[] = 'gravityview_full_access'; |
|
| 411 | + if ( $has_gravityview_caps = array_intersect( $caps_to_check, $all_gravityview_caps ) ) { |
|
| 412 | + $caps_to_check[ ] = 'gravityview_full_access'; |
|
| 413 | 413 | } |
| 414 | 414 | |
| 415 | 415 | $all_gravity_forms_caps = class_exists( 'GFCommon' ) ? GFCommon::all_caps() : array(); |
| 416 | 416 | |
| 417 | 417 | // Are there any $caps_to_check that are from Gravity Forms? |
| 418 | - if( $all_gravity_forms_caps = array_intersect( $caps_to_check, $all_gravity_forms_caps ) ) { |
|
| 419 | - $caps_to_check[] = 'gform_full_access'; |
|
| 418 | + if ( $all_gravity_forms_caps = array_intersect( $caps_to_check, $all_gravity_forms_caps ) ) { |
|
| 419 | + $caps_to_check[ ] = 'gform_full_access'; |
|
| 420 | 420 | } |
| 421 | 421 | |
| 422 | 422 | return array_unique( $caps_to_check ); |
@@ -438,7 +438,7 @@ discard block |
||
| 438 | 438 | $capabilities = self::all_caps(); |
| 439 | 439 | |
| 440 | 440 | // Loop through each role and remove GV caps_to_check |
| 441 | - foreach( $wp_roles->get_names() as $role_slug => $role_name ) { |
|
| 441 | + foreach ( $wp_roles->get_names() as $role_slug => $role_name ) { |
|
| 442 | 442 | foreach ( $capabilities as $cap ) { |
| 443 | 443 | $wp_roles->remove_cap( $role_slug, $cap ); |
| 444 | 444 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | |
| 30 | 30 | $labels = array( |
| 31 | 31 | 'cancel' => __( 'Cancel', 'gravityview' ), |
| 32 | - 'submit' => __( 'Update', 'gravityview') |
|
| 32 | + 'submit' => __( 'Update', 'gravityview' ) |
|
| 33 | 33 | ); |
| 34 | 34 | |
| 35 | 35 | /** |
@@ -45,9 +45,9 @@ discard block |
||
| 45 | 45 | $update_tabindex = GFCommon::get_tabindex(); |
| 46 | 46 | $cancel_tabindex = GFCommon::get_tabindex(); |
| 47 | 47 | ?> |
| 48 | - <input id="gform_submit_button_<?php echo esc_attr( $object->form['id'] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels['submit'] ); ?>" name="save" /> |
|
| 48 | + <input id="gform_submit_button_<?php echo esc_attr( $object->form[ 'id' ] ); ?>" class="btn btn-lg button button-large gform_button button-primary gv-button-update" type="submit" <?php echo $update_tabindex; ?> value="<?php echo esc_attr( $labels[ 'submit' ] ); ?>" name="save" /> |
|
| 49 | 49 | |
| 50 | - <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels['cancel'] ); ?></a> |
|
| 50 | + <a class="btn btn-sm button button-small gv-button-cancel" <?php echo $cancel_tabindex; ?> href="<?php echo esc_url( $back_link ); ?>"><?php echo esc_attr( $labels[ 'cancel' ] ); ?></a> |
|
| 51 | 51 | <?php |
| 52 | 52 | |
| 53 | 53 | /** |
@@ -61,5 +61,5 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | ?> |
| 63 | 63 | <input type="hidden" name="action" value="update" /> |
| 64 | - <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry['id'] ); ?>" /> |
|
| 64 | + <input type="hidden" name="lid" value="<?php echo esc_attr( $object->entry[ 'id' ] ); ?>" /> |
|
| 65 | 65 | </div> |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | add_filter( 'icl_ls_languages', array( $this, 'wpml_ls_filter' ) ); |
| 66 | 66 | |
| 67 | - add_filter( 'gravityview_directory_link', array( $this, 'filter_gravityview_back_link') ); |
|
| 67 | + add_filter( 'gravityview_directory_link', array( $this, 'filter_gravityview_back_link' ) ); |
|
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | function filter_gravityview_back_link( $link ) { |
| 85 | 85 | global $wpml_url_filters; |
| 86 | 86 | |
| 87 | - if( $wpml_url_filters ) { |
|
| 87 | + if ( $wpml_url_filters ) { |
|
| 88 | 88 | $link = $wpml_url_filters->permalink_filter( $link, GravityView_frontend::getInstance()->getPostId() ); |
| 89 | 89 | } |
| 90 | 90 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | private function remove_url_hooks() { |
| 102 | 102 | global $wpml_url_filters; |
| 103 | 103 | |
| 104 | - if( ! $wpml_url_filters ) { |
|
| 104 | + if ( ! $wpml_url_filters ) { |
|
| 105 | 105 | return; |
| 106 | 106 | } |
| 107 | 107 | |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | private function add_url_hooks() { |
| 130 | 130 | global $wpml_url_filters; |
| 131 | 131 | |
| 132 | - if( ! $wpml_url_filters ) { |
|
| 132 | + if ( ! $wpml_url_filters ) { |
|
| 133 | 133 | return; |
| 134 | 134 | } |
| 135 | 135 | |
@@ -178,10 +178,10 @@ discard block |
||
| 178 | 178 | |
| 179 | 179 | $this->remove_url_hooks(); |
| 180 | 180 | |
| 181 | - if( $translations ) { |
|
| 181 | + if ( $translations ) { |
|
| 182 | 182 | foreach ( $languages as $lang_code => $language ) { |
| 183 | 183 | |
| 184 | - if( ! isset( $translations[ $lang_code ] ) || ! is_object( $translations[ $lang_code ] ) ) { |
|
| 184 | + if ( ! isset( $translations[ $lang_code ] ) || ! is_object( $translations[ $lang_code ] ) ) { |
|
| 185 | 185 | continue; |
| 186 | 186 | } |
| 187 | 187 | |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | break; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - $languages[ $lang_code ]['url'] = $entry_link; |
|
| 218 | + $languages[ $lang_code ][ 'url' ] = $entry_link; |
|
| 219 | 219 | } |
| 220 | 220 | } |
| 221 | 221 | |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | function edit_entry_fix_hidden_fields( $fields ) { |
| 50 | 50 | |
| 51 | 51 | /** @var GF_Field $field */ |
| 52 | - foreach( $fields as &$field ) { |
|
| 52 | + foreach ( $fields as &$field ) { |
|
| 53 | 53 | if ( 'hidden' === $field->type ) { |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | */ |
| 61 | 61 | $reveal_hidden_field = apply_filters( 'gravityview/edit_entry/reveal_hidden_field', true, $field ); |
| 62 | 62 | |
| 63 | - if( ! $reveal_hidden_field ) { |
|
| 63 | + if ( ! $reveal_hidden_field ) { |
|
| 64 | 64 | continue; |
| 65 | 65 | } |
| 66 | 66 | |
@@ -38,10 +38,10 @@ discard block |
||
| 38 | 38 | $this->api_data = $_api_data; |
| 39 | 39 | $this->name = plugin_basename( $_plugin_file ); |
| 40 | 40 | $this->slug = basename( $_plugin_file, '.php' ); |
| 41 | - $this->version = $_api_data['version']; |
|
| 42 | - $this->wp_override = isset( $_api_data['wp_override'] ) ? (bool) $_api_data['wp_override'] : false; |
|
| 43 | - $this->beta = ! empty( $this->api_data['beta'] ) ? true : false; |
|
| 44 | - $this->cache_key = md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) ); |
|
| 41 | + $this->version = $_api_data[ 'version' ]; |
|
| 42 | + $this->wp_override = isset( $_api_data[ 'wp_override' ] ) ? (bool)$_api_data[ 'wp_override' ] : false; |
|
| 43 | + $this->beta = ! empty( $this->api_data[ 'beta' ] ) ? true : false; |
|
| 44 | + $this->cache_key = md5( serialize( $this->slug . $this->api_data[ 'license' ] . $this->beta ) ); |
|
| 45 | 45 | |
| 46 | 46 | $edd_plugin_data[ $this->slug ] = $this->api_data; |
| 47 | 47 | |
@@ -133,11 +133,11 @@ discard block |
||
| 133 | 133 | return; |
| 134 | 134 | } |
| 135 | 135 | |
| 136 | - if( ! current_user_can( 'update_plugins' ) ) { |
|
| 136 | + if ( ! current_user_can( 'update_plugins' ) ) { |
|
| 137 | 137 | return; |
| 138 | 138 | } |
| 139 | 139 | |
| 140 | - if( ! is_multisite() ) { |
|
| 140 | + if ( ! is_multisite() ) { |
|
| 141 | 141 | return; |
| 142 | 142 | } |
| 143 | 143 | |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | '<a target="_blank" class="thickbox" href="' . esc_url( $changelog_link ) . '">', |
| 213 | 213 | esc_html( $version_info->new_version ), |
| 214 | 214 | '</a>', |
| 215 | - '<a href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) ) .'">', |
|
| 215 | + '<a href="' . esc_url( wp_nonce_url( self_admin_url( 'update.php?action=upgrade-plugin&plugin=' ) . $this->name, 'upgrade-plugin_' . $this->name ) ) . '">', |
|
| 216 | 216 | '</a>' |
| 217 | 217 | ); |
| 218 | 218 | } |
@@ -256,7 +256,7 @@ discard block |
||
| 256 | 256 | ) |
| 257 | 257 | ); |
| 258 | 258 | |
| 259 | - $cache_key = 'edd_api_request_' . md5( serialize( $this->slug . $this->api_data['license'] . $this->beta ) ); |
|
| 259 | + $cache_key = 'edd_api_request_' . md5( serialize( $this->slug . $this->api_data[ 'license' ] . $this->beta ) ); |
|
| 260 | 260 | |
| 261 | 261 | // Get the transient where we store the api request for this plugin for 24 hours |
| 262 | 262 | $edd_api_request_transient = $this->get_cached_version_info( $cache_key ); |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | |
| 312 | 312 | $verify_ssl = $this->verify_ssl(); |
| 313 | 313 | if ( strpos( $url, 'https://' ) !== false && strpos( $url, 'edd_action=package_download' ) ) { |
| 314 | - $args['sslverify'] = $verify_ssl; |
|
| 314 | + $args[ 'sslverify' ] = $verify_ssl; |
|
| 315 | 315 | } |
| 316 | 316 | return $args; |
| 317 | 317 | |
@@ -334,24 +334,24 @@ discard block |
||
| 334 | 334 | |
| 335 | 335 | $data = array_merge( $this->api_data, $_data ); |
| 336 | 336 | |
| 337 | - if ( $data['slug'] != $this->slug ) { |
|
| 337 | + if ( $data[ 'slug' ] != $this->slug ) { |
|
| 338 | 338 | return; |
| 339 | 339 | } |
| 340 | 340 | |
| 341 | - if( $this->api_url == trailingslashit (home_url() ) ) { |
|
| 341 | + if ( $this->api_url == trailingslashit( home_url() ) ) { |
|
| 342 | 342 | return false; // Don't allow a plugin to ping itself |
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | $api_params = array( |
| 346 | 346 | 'edd_action' => 'get_version', |
| 347 | - 'license' => ! empty( $data['license'] ) ? $data['license'] : '', |
|
| 348 | - 'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false, |
|
| 349 | - 'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false, |
|
| 350 | - 'version' => isset( $data['version'] ) ? $data['version'] : false, |
|
| 351 | - 'slug' => $data['slug'], |
|
| 352 | - 'author' => $data['author'], |
|
| 347 | + 'license' => ! empty( $data[ 'license' ] ) ? $data[ 'license' ] : '', |
|
| 348 | + 'item_name' => isset( $data[ 'item_name' ] ) ? $data[ 'item_name' ] : false, |
|
| 349 | + 'item_id' => isset( $data[ 'item_id' ] ) ? $data[ 'item_id' ] : false, |
|
| 350 | + 'version' => isset( $data[ 'version' ] ) ? $data[ 'version' ] : false, |
|
| 351 | + 'slug' => $data[ 'slug' ], |
|
| 352 | + 'author' => $data[ 'author' ], |
|
| 353 | 353 | 'url' => home_url(), |
| 354 | - 'beta' => ! empty( $data['beta'] ), |
|
| 354 | + 'beta' => ! empty( $data[ 'beta' ] ), |
|
| 355 | 355 | ); |
| 356 | 356 | |
| 357 | 357 | $verify_ssl = $this->verify_ssl(); |
@@ -371,9 +371,9 @@ discard block |
||
| 371 | 371 | $request->banners = maybe_unserialize( $request->banners ); |
| 372 | 372 | } |
| 373 | 373 | |
| 374 | - if( ! empty( $request->sections ) ) { |
|
| 375 | - foreach( $request->sections as $key => $section ) { |
|
| 376 | - $request->$key = (array) $section; |
|
| 374 | + if ( ! empty( $request->sections ) ) { |
|
| 375 | + foreach ( $request->sections as $key => $section ) { |
|
| 376 | + $request->$key = (array)$section; |
|
| 377 | 377 | } |
| 378 | 378 | } |
| 379 | 379 | |
@@ -384,37 +384,37 @@ discard block |
||
| 384 | 384 | |
| 385 | 385 | global $edd_plugin_data; |
| 386 | 386 | |
| 387 | - if( empty( $_REQUEST['edd_sl_action'] ) || 'view_plugin_changelog' != $_REQUEST['edd_sl_action'] ) { |
|
| 387 | + if ( empty( $_REQUEST[ 'edd_sl_action' ] ) || 'view_plugin_changelog' != $_REQUEST[ 'edd_sl_action' ] ) { |
|
| 388 | 388 | return; |
| 389 | 389 | } |
| 390 | 390 | |
| 391 | - if( empty( $_REQUEST['plugin'] ) ) { |
|
| 391 | + if ( empty( $_REQUEST[ 'plugin' ] ) ) { |
|
| 392 | 392 | return; |
| 393 | 393 | } |
| 394 | 394 | |
| 395 | - if( empty( $_REQUEST['slug'] ) ) { |
|
| 395 | + if ( empty( $_REQUEST[ 'slug' ] ) ) { |
|
| 396 | 396 | return; |
| 397 | 397 | } |
| 398 | 398 | |
| 399 | - if( ! current_user_can( 'update_plugins' ) ) { |
|
| 399 | + if ( ! current_user_can( 'update_plugins' ) ) { |
|
| 400 | 400 | wp_die( __( 'You do not have permission to install plugin updates', 'gravityview' ), __( 'Error', 'gravityview' ), array( 'response' => 403 ) ); |
| 401 | 401 | } |
| 402 | 402 | |
| 403 | - $data = $edd_plugin_data[ $_REQUEST['slug'] ]; |
|
| 404 | - $beta = ! empty( $data['beta'] ) ? true : false; |
|
| 405 | - $cache_key = md5( 'edd_plugin_' . sanitize_key( $_REQUEST['plugin'] ) . '_' . $beta . '_version_info' ); |
|
| 403 | + $data = $edd_plugin_data[ $_REQUEST[ 'slug' ] ]; |
|
| 404 | + $beta = ! empty( $data[ 'beta' ] ) ? true : false; |
|
| 405 | + $cache_key = md5( 'edd_plugin_' . sanitize_key( $_REQUEST[ 'plugin' ] ) . '_' . $beta . '_version_info' ); |
|
| 406 | 406 | $version_info = $this->get_cached_version_info( $cache_key ); |
| 407 | 407 | |
| 408 | - if( false === $version_info ) { |
|
| 408 | + if ( false === $version_info ) { |
|
| 409 | 409 | |
| 410 | 410 | $api_params = array( |
| 411 | 411 | 'edd_action' => 'get_version', |
| 412 | - 'item_name' => isset( $data['item_name'] ) ? $data['item_name'] : false, |
|
| 413 | - 'item_id' => isset( $data['item_id'] ) ? $data['item_id'] : false, |
|
| 414 | - 'slug' => $_REQUEST['slug'], |
|
| 415 | - 'author' => $data['author'], |
|
| 412 | + 'item_name' => isset( $data[ 'item_name' ] ) ? $data[ 'item_name' ] : false, |
|
| 413 | + 'item_id' => isset( $data[ 'item_id' ] ) ? $data[ 'item_id' ] : false, |
|
| 414 | + 'slug' => $_REQUEST[ 'slug' ], |
|
| 415 | + 'author' => $data[ 'author' ], |
|
| 416 | 416 | 'url' => home_url(), |
| 417 | - 'beta' => ! empty( $data['beta'] ) |
|
| 417 | + 'beta' => ! empty( $data[ 'beta' ] ) |
|
| 418 | 418 | ); |
| 419 | 419 | |
| 420 | 420 | $verify_ssl = $this->verify_ssl(); |
@@ -431,9 +431,9 @@ discard block |
||
| 431 | 431 | $version_info = false; |
| 432 | 432 | } |
| 433 | 433 | |
| 434 | - if( ! empty( $version_info ) ) { |
|
| 435 | - foreach( $version_info->sections as $key => $section ) { |
|
| 436 | - $version_info->$key = (array) $section; |
|
| 434 | + if ( ! empty( $version_info ) ) { |
|
| 435 | + foreach ( $version_info->sections as $key => $section ) { |
|
| 436 | + $version_info->$key = (array)$section; |
|
| 437 | 437 | } |
| 438 | 438 | } |
| 439 | 439 | |
@@ -441,8 +441,8 @@ discard block |
||
| 441 | 441 | |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | - if( ! empty( $version_info ) && isset( $version_info->sections['changelog'] ) ) { |
|
| 445 | - echo '<div style="background:#fff;padding:10px;">' . $version_info->sections['changelog'] . '</div>'; |
|
| 444 | + if ( ! empty( $version_info ) && isset( $version_info->sections[ 'changelog' ] ) ) { |
|
| 445 | + echo '<div style="background:#fff;padding:10px;">' . $version_info->sections[ 'changelog' ] . '</div>'; |
|
| 446 | 446 | } |
| 447 | 447 | |
| 448 | 448 | exit; |
@@ -450,23 +450,23 @@ discard block |
||
| 450 | 450 | |
| 451 | 451 | public function get_cached_version_info( $cache_key = '' ) { |
| 452 | 452 | |
| 453 | - if( empty( $cache_key ) ) { |
|
| 453 | + if ( empty( $cache_key ) ) { |
|
| 454 | 454 | $cache_key = $this->cache_key; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | 457 | $cache = get_option( $cache_key ); |
| 458 | 458 | |
| 459 | - if( empty( $cache['timeout'] ) || current_time( 'timestamp' ) > $cache['timeout'] ) { |
|
| 459 | + if ( empty( $cache[ 'timeout' ] ) || current_time( 'timestamp' ) > $cache[ 'timeout' ] ) { |
|
| 460 | 460 | return false; // Cache is expired |
| 461 | 461 | } |
| 462 | 462 | |
| 463 | - return json_decode( $cache['value'] ); |
|
| 463 | + return json_decode( $cache[ 'value' ] ); |
|
| 464 | 464 | |
| 465 | 465 | } |
| 466 | 466 | |
| 467 | 467 | public function set_version_info_cache( $value = '', $cache_key = '' ) { |
| 468 | 468 | |
| 469 | - if( empty( $cache_key ) ) { |
|
| 469 | + if ( empty( $cache_key ) ) { |
|
| 470 | 470 | $cache_key = $this->cache_key; |
| 471 | 471 | } |
| 472 | 472 | |
@@ -486,7 +486,7 @@ discard block |
||
| 486 | 486 | * @return bool |
| 487 | 487 | */ |
| 488 | 488 | private function verify_ssl() { |
| 489 | - return (bool) apply_filters( 'edd_sl_api_request_verify_ssl', true, $this ); |
|
| 489 | + return (bool)apply_filters( 'edd_sl_api_request_verify_ssl', true, $this ); |
|
| 490 | 490 | } |
| 491 | 491 | |
| 492 | 492 | } |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | printf( '<body style="padding: 0; margin: 0; font-family: -apple-system, BlinkMacSystemFont, \'Segoe UI\', Roboto, Oxygen-Sans, Ubuntu, Cantarell, \'Helvetica Neue\', sans-serif;">' ); |
| 26 | 26 | printf( '<img src="' . plugins_url( 'assets/images/astronaut-200x263.png', GRAVITYVIEW_FILE ) . '" alt="The GravityView Astronaut Says:" style="float: left; height: 60px; margin-right : 10px;" />' ); |
| 27 | 27 | printf( __( "%sGravityView requires PHP Version %s or newer.%s \n\nYou're using Version %s. Please ask your host to upgrade your server's PHP.", 'gravityview' ), |
| 28 | - '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_MIN_PHP_VERSION , "</h3>\n\n", $version ); |
|
| 28 | + '<h3 style="font-size:16px; margin: 0 0 8px 0;">', GV_MIN_PHP_VERSION, "</h3>\n\n", $version ); |
|
| 29 | 29 | printf( '</body>' ); |
| 30 | 30 | } |
| 31 | 31 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** The future branch of GravityView requires PHP 5.3+ namespaces and SPL. */ |
| 37 | -if ( version_compare( phpversion(), '5.3.0' , '<' ) ) { |
|
| 37 | +if ( version_compare( phpversion(), '5.3.0', '<' ) ) { |
|
| 38 | 38 | require GRAVITYVIEW_DIR . 'future/_stubs.php'; |
| 39 | 39 | |
| 40 | 40 | /** All looks fine. */ |