@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | $args = array(); |
| 115 | 115 | |
| 116 | - $view_id = is_null ( $view ) ? null : $view->ID; |
|
| 116 | + $view_id = is_null( $view ) ? null : $view->ID; |
|
| 117 | 117 | |
| 118 | 118 | $permalink = null; |
| 119 | 119 | |
@@ -126,8 +126,8 @@ discard block |
||
| 126 | 126 | |
| 127 | 127 | $view_collection = View_Collection::from_post( $post ); |
| 128 | 128 | |
| 129 | - if( 1 < $view_collection->count() ) { |
|
| 130 | - $args['gvid'] = $view_id; |
|
| 129 | + if ( 1 < $view_collection->count() ) { |
|
| 130 | + $args[ 'gvid' ] = $view_id; |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | } |
@@ -157,21 +157,21 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | $link_parts = explode( '?', $permalink ); |
| 159 | 159 | |
| 160 | - $query = ! empty( $link_parts[1] ) ? '?' . $link_parts[1] : ''; |
|
| 160 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
| 161 | 161 | |
| 162 | - $permalink = trailingslashit( $link_parts[0] ) . $entry_endpoint_name . '/'. $entry_slug .'/' . $query; |
|
| 162 | + $permalink = trailingslashit( $link_parts[ 0 ] ) . $entry_endpoint_name . '/' . $entry_slug . '/' . $query; |
|
| 163 | 163 | } else { |
| 164 | 164 | $args[ $entry_endpoint_name ] = $entry_slug; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | if ( $track_directory ) { |
| 168 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
| 169 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
| 168 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
| 169 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | if ( $sort = Utils::_GET( 'sort' ) ) { |
| 173 | - $args['sort'] = $sort; |
|
| 174 | - $args['dir'] = Utils::_GET( 'dir' ); |
|
| 173 | + $args[ 'sort' ] = $sort; |
|
| 174 | + $args[ 'dir' ] = Utils::_GET( 'dir' ); |
|
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | |
| 210 | 210 | $entry_slug = \GravityView_API::get_entry_slug( $this->ID, $this->as_entry() ); |
| 211 | 211 | |
| 212 | - if( ! $apply_filter ) { |
|
| 212 | + if ( ! $apply_filter ) { |
|
| 213 | 213 | return $entry_slug; |
| 214 | 214 | } |
| 215 | 215 | |
@@ -106,14 +106,14 @@ discard block |
||
| 106 | 106 | * @return \GV\GF_Entry|null An instance of this entry or null if not found. |
| 107 | 107 | */ |
| 108 | 108 | public static function from_entry( $entry ) { |
| 109 | - if ( empty( $entry['id'] ) ) { |
|
| 109 | + if ( empty( $entry[ 'id' ] ) ) { |
|
| 110 | 110 | return null; |
| 111 | 111 | } |
| 112 | 112 | |
| 113 | 113 | $self = new self(); |
| 114 | 114 | $self->entry = $entry; |
| 115 | 115 | |
| 116 | - $self->ID = $self->entry['id']; |
|
| 116 | + $self->ID = $self->entry[ 'id' ]; |
|
| 117 | 117 | $self->slug = $self->get_slug(); |
| 118 | 118 | |
| 119 | 119 | return $self; |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | * @return bool Whether the offset exists or not. |
| 129 | 129 | */ |
| 130 | 130 | public function offsetExists( $offset ) { |
| 131 | - return isset( $this->entry[$offset] ); |
|
| 131 | + return isset( $this->entry[ $offset ] ); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | * @return mixed The value of the requested entry data. |
| 144 | 144 | */ |
| 145 | 145 | public function offsetGet( $offset ) { |
| 146 | - return $this->entry[$offset]; |
|
| 146 | + return $this->entry[ $offset ]; |
|
| 147 | 147 | } |
| 148 | 148 | |
| 149 | 149 | /** |
@@ -10,13 +10,13 @@ discard block |
||
| 10 | 10 | wp_nonce_field( 'gravityview_select_form', 'gravityview_select_form_nonce' ); |
| 11 | 11 | |
| 12 | 12 | //current value |
| 13 | -$current_form = (int) \GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
| 13 | +$current_form = (int)\GV\Utils::_GET( 'form_id', gravityview_get_form_id( $post->ID ) ); |
|
| 14 | 14 | |
| 15 | 15 | // If form is in trash or not existing, show error |
| 16 | 16 | GravityView_Admin::connected_form_warning( $current_form ); |
| 17 | 17 | |
| 18 | 18 | // check for available gravity forms |
| 19 | -$forms = gravityview_get_forms('any', false, 'title' ); |
|
| 19 | +$forms = gravityview_get_forms( 'any', false, 'title' ); |
|
| 20 | 20 | |
| 21 | 21 | /** |
| 22 | 22 | * @param int $current_form Form currently selected in the View (0 if none selected) |
@@ -35,24 +35,24 @@ discard block |
||
| 35 | 35 | ?> |
| 36 | 36 | <a class="button button-primary" href="#gv_start_fresh" title="<?php esc_attr_e( 'Use a Form Preset', 'gravityview' ); ?>"><?php esc_html_e( 'Use a Form Preset', 'gravityview' ); ?></a> |
| 37 | 37 | |
| 38 | - <?php if( !empty( $forms ) ) { ?> |
|
| 38 | + <?php if ( ! empty( $forms ) ) { ?> |
|
| 39 | 39 | <span> <?php esc_html_e( 'or use an existing form', 'gravityview' ); ?> </span> |
| 40 | 40 | <?php } |
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | // If there are no forms to select, show no forms. |
| 44 | - if( !empty( $forms ) ) { ?> |
|
| 44 | + if ( ! empty( $forms ) ) { ?> |
|
| 45 | 45 | <select name="gravityview_form_id" id="gravityview_form_id"> |
| 46 | 46 | <option value="" <?php selected( '', $current_form, true ); ?>>— <?php esc_html_e( 'list of forms', 'gravityview' ); ?> —</option> |
| 47 | - <?php foreach( $forms as $form ) { ?> |
|
| 48 | - <option value="<?php echo $form['id']; ?>" <?php selected( $form['id'], $current_form, true ); ?>><?php echo esc_html( $form['title'] ); ?></option> |
|
| 47 | + <?php foreach ( $forms as $form ) { ?> |
|
| 48 | + <option value="<?php echo $form[ 'id' ]; ?>" <?php selected( $form[ 'id' ], $current_form, true ); ?>><?php echo esc_html( $form[ 'title' ] ); ?></option> |
|
| 49 | 49 | <?php } ?> |
| 50 | 50 | </select> |
| 51 | 51 | <?php } else { ?> |
| 52 | 52 | <select name="gravityview_form_id" id="gravityview_form_id" class="hidden"><option selected="selected" value=""></option></select> |
| 53 | 53 | <?php } ?> |
| 54 | 54 | |
| 55 | - <button class="button button-primary" <?php if( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
| 55 | + <button class="button button-primary" <?php if ( empty( $current_form ) ) { echo 'style="display:none;"'; } ?> id="gv_switch_view_button" title="<?php esc_attr_e( 'Switch View', 'gravityview' ); ?>"><?php esc_html_e( 'Switch View Type', 'gravityview' ); ?></button> |
|
| 56 | 56 | </p> |
| 57 | 57 | |
| 58 | 58 | <?php // confirm dialog box ?> |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | public function get_output() { |
| 191 | 191 | |
| 192 | 192 | // No Entries |
| 193 | - if( empty( $this->entries ) ) { |
|
| 194 | - return '<div class="gv-no-results">'.$this->empty_message.'</div>'; |
|
| 193 | + if ( empty( $this->entries ) ) { |
|
| 194 | + return '<div class="gv-no-results">' . $this->empty_message . '</div>'; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | $output = ''; |
@@ -202,22 +202,22 @@ discard block |
||
| 202 | 202 | $current_entry = GravityView_View::getInstance()->getCurrentEntry(); |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - $output .= '<'. $this->wrapper_tag .'>'; |
|
| 205 | + $output .= '<' . $this->wrapper_tag . '>'; |
|
| 206 | 206 | |
| 207 | - foreach( $this->entries as $entry ) { |
|
| 207 | + foreach ( $this->entries as $entry ) { |
|
| 208 | 208 | |
| 209 | 209 | if ( $entry instanceof \GV\Entry ) { |
| 210 | 210 | $entry = $entry->as_entry(); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if( $this->skip_entry( $entry, $current_entry ) ) { |
|
| 213 | + if ( $this->skip_entry( $entry, $current_entry ) ) { |
|
| 214 | 214 | continue; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | $output .= $this->get_item_output( $entry ); |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - $output .= '</'. $this->wrapper_tag .'>'; |
|
| 220 | + $output .= '</' . $this->wrapper_tag . '>'; |
|
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | 223 | * @filter `gravityview/widget/recent-entries/output` Modify the HTML of the Recent Entries widget output |
@@ -240,15 +240,15 @@ discard block |
||
| 240 | 240 | private function skip_entry( $entry, $current_entry ) { |
| 241 | 241 | |
| 242 | 242 | // If skip entry is off, or there's no current entry, return false |
| 243 | - if( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { |
|
| 243 | + if ( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { |
|
| 244 | 244 | return false; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | // If in Single or Edit mode, $current_entry will be an array. |
| 248 | - $current_entry_id = is_array( $current_entry ) ? $current_entry['id'] : $current_entry; |
|
| 248 | + $current_entry_id = is_array( $current_entry ) ? $current_entry[ 'id' ] : $current_entry; |
|
| 249 | 249 | |
| 250 | 250 | // If the entry ID matches the current entry, yes: skip |
| 251 | - if( $entry['id'] === $current_entry_id ) { |
|
| 251 | + if ( $entry[ 'id' ] === $current_entry_id ) { |
|
| 252 | 252 | return true; |
| 253 | 253 | } |
| 254 | 254 | |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | |
| 284 | 284 | $item_output = gravityview_get_link( $link, $this->link_format ); |
| 285 | 285 | |
| 286 | - if( !empty( $this->after_link ) ) { |
|
| 286 | + if ( ! empty( $this->after_link ) ) { |
|
| 287 | 287 | |
| 288 | 288 | /** |
| 289 | 289 | * @filter `gravityview/entry-list/after-link` Modify the content displayed after the entry link in an entry list |
@@ -292,14 +292,14 @@ discard block |
||
| 292 | 292 | * @param array $entry Gravity Forms entry array |
| 293 | 293 | * @param GravityView_Entry_List $this The current class instance |
| 294 | 294 | */ |
| 295 | - $after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>'.$this->after_link.'</div>', $entry, $this ); |
|
| 295 | + $after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>' . $this->after_link . '</div>', $entry, $this ); |
|
| 296 | 296 | |
| 297 | 297 | $item_output .= $after_link; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | $item_output = GravityView_API::replace_variables( $item_output, $this->form, $entry ); |
| 301 | 301 | |
| 302 | - $item_output = '<'. $this->item_tag .'>'. $item_output .'</'. $this->item_tag .'>'; |
|
| 302 | + $item_output = '<' . $this->item_tag . '>' . $item_output . '</' . $this->item_tag . '>'; |
|
| 303 | 303 | |
| 304 | 304 | /** |
| 305 | 305 | * @filter `gravityview/entry-list/item` Modify each item's output in an entry list |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $format = '(?:\.(?P<format>html|json))?'; |
| 134 | 134 | |
| 135 | - register_rest_route( $namespace, sprintf( '/%s/(?P<id>[\d]+)/%s/(?P<s_id>[\w-]+)%s', $base, $sub_type, $format ) , array( |
|
| 135 | + register_rest_route( $namespace, sprintf( '/%s/(?P<id>[\d]+)/%s/(?P<s_id>[\w-]+)%s', $base, $sub_type, $format ), array( |
|
| 136 | 136 | array( |
| 137 | 137 | 'methods' => \WP_REST_Server::READABLE, |
| 138 | 138 | 'callback' => array( $this, 'get_sub_item' ), |
@@ -382,7 +382,7 @@ discard block |
||
| 382 | 382 | * @return \WP_REST_Response |
| 383 | 383 | */ |
| 384 | 384 | protected function not_implemented() { |
| 385 | - $error = new \WP_Error( 'not-implemented-yet', __( 'Endpoint Not Yet Implemented.', 'gravityview' ) ); |
|
| 385 | + $error = new \WP_Error( 'not-implemented-yet', __( 'Endpoint Not Yet Implemented.', 'gravityview' ) ); |
|
| 386 | 386 | return new \WP_REST_Response( $error, 501 ); |
| 387 | 387 | } |
| 388 | 388 | |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | * number input type |
| 4 | 4 | */ |
| 5 | 5 | |
| 6 | -if( !class_exists('GravityView_FieldType_text') ) { |
|
| 6 | +if ( ! class_exists( 'GravityView_FieldType_text' ) ) { |
|
| 7 | 7 | include_once( GRAVITYVIEW_DIR . 'includes/admin/field-types/type_text.php' ); |
| 8 | 8 | } |
| 9 | 9 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | $show_mt = $this->show_merge_tags(); |
| 22 | 22 | |
| 23 | - if ( $show_mt && $this->field['merge_tags'] !== false || $this->field['merge_tags'] === 'force' ) { |
|
| 23 | + if ( $show_mt && $this->field[ 'merge_tags' ] !== false || $this->field[ 'merge_tags' ] === 'force' ) { |
|
| 24 | 24 | $class = 'merge-tag-support mt-position-right mt-hide_all_fields '; |
| 25 | 25 | } |
| 26 | 26 | |
@@ -31,9 +31,9 @@ discard block |
||
| 31 | 31 | $step = \GV\Utils::get( $this->field, 'step', null ); |
| 32 | 32 | |
| 33 | 33 | $atts = ''; |
| 34 | - $atts .= $max ? ' max="' . (int) $max . '"' : ''; |
|
| 35 | - $atts .= $min ? ' min="' . (int) $min . '"' : ''; |
|
| 36 | - $atts .= $step ? ' step="' . (int) $step . '"' : ''; |
|
| 34 | + $atts .= $max ? ' max="' . (int)$max . '"' : ''; |
|
| 35 | + $atts .= $min ? ' min="' . (int)$min . '"' : ''; |
|
| 36 | + $atts .= $step ? ' step="' . (int)$step . '"' : ''; |
|
| 37 | 37 | ?> |
| 38 | 38 | <input name="<?php echo esc_attr( $this->name ); ?>" id="<?php echo $this->get_field_id(); ?>" type="number" |
| 39 | 39 | value="<?php echo esc_attr( $this->value ); ?>" |
@@ -88,15 +88,15 @@ |
||
| 88 | 88 | */ |
| 89 | 89 | public function maybe_modify_button_label( $label = '', $atts = array() ) { |
| 90 | 90 | |
| 91 | - if( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) { |
|
| 91 | + if ( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) { |
|
| 92 | 92 | return $label; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if( 'field' !== \GV\Utils::get( $atts, 'type' ) ) { |
|
| 95 | + if ( 'field' !== \GV\Utils::get( $atts, 'type' ) ) { |
|
| 96 | 96 | return $label; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) { |
|
| 99 | + if ( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) { |
|
| 100 | 100 | return $label; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -33,14 +33,14 @@ discard block |
||
| 33 | 33 | $defaults = self::get_field_defaults(); |
| 34 | 34 | |
| 35 | 35 | // Backward compatibility |
| 36 | - if( !empty( $field['choices'] ) ) { |
|
| 37 | - $field['options'] = $field['choices']; |
|
| 38 | - unset( $field['choices'] ); |
|
| 36 | + if ( ! empty( $field[ 'choices' ] ) ) { |
|
| 37 | + $field[ 'options' ] = $field[ 'choices' ]; |
|
| 38 | + unset( $field[ 'choices' ] ); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - $this->field = wp_parse_args( $field, $defaults ); |
|
| 41 | + $this->field = wp_parse_args( $field, $defaults ); |
|
| 42 | 42 | |
| 43 | - $this->value = is_null( $curr_value ) ? $this->field['value'] : $curr_value; |
|
| 43 | + $this->value = is_null( $curr_value ) ? $this->field[ 'value' ] : $curr_value; |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | 46 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | |
| 81 | 81 | function get_tooltip() { |
| 82 | - if( ! function_exists('gform_tooltip') ) { |
|
| 82 | + if ( ! function_exists( 'gform_tooltip' ) ) { |
|
| 83 | 83 | return null; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | 'url' => '#', |
| 90 | 90 | ) ); |
| 91 | 91 | |
| 92 | - return !empty( $this->field['tooltip'] ) ? ' '. $this->tooltip( $this->field['tooltip'], false, true, $article ) : null; |
|
| 92 | + return ! empty( $this->field[ 'tooltip' ] ) ? ' ' . $this->tooltip( $this->field[ 'tooltip' ], false, true, $article ) : null; |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | * Below this line has been modified by GravityView. |
| 133 | 133 | */ |
| 134 | 134 | |
| 135 | - if ( empty( $tooltip_text ) && empty( $article['id'] ) ) { |
|
| 135 | + if ( empty( $tooltip_text ) && empty( $article[ 'id' ] ) ) { |
|
| 136 | 136 | return ''; |
| 137 | 137 | } |
| 138 | 138 | |
@@ -168,8 +168,8 @@ discard block |
||
| 168 | 168 | * @return string |
| 169 | 169 | */ |
| 170 | 170 | function get_field_id() { |
| 171 | - if( isset( $this->field['id'] ) ) { |
|
| 172 | - return esc_attr( $this->field['id'] ); |
|
| 171 | + if ( isset( $this->field[ 'id' ] ) ) { |
|
| 172 | + return esc_attr( $this->field[ 'id' ] ); |
|
| 173 | 173 | } |
| 174 | 174 | return esc_attr( sanitize_html_class( $this->name ) ); |
| 175 | 175 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * @return string |
| 180 | 180 | */ |
| 181 | 181 | function get_field_label() { |
| 182 | - return esc_html( trim( $this->field['label'] ) ); |
|
| 182 | + return esc_html( trim( $this->field[ 'label' ] ) ); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | * @return string |
| 191 | 191 | */ |
| 192 | 192 | function get_field_left_label() { |
| 193 | - return ! empty( $this->field['left_label'] ) ? esc_html( trim( $this->field['left_label'] ) ) : NULL; |
|
| 193 | + return ! empty( $this->field[ 'left_label' ] ) ? esc_html( trim( $this->field[ 'left_label' ] ) ) : NULL; |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * @return string |
| 199 | 199 | */ |
| 200 | 200 | function get_label_class() { |
| 201 | - return 'gv-label-'. sanitize_html_class( $this->field['type'] ); |
|
| 201 | + return 'gv-label-' . sanitize_html_class( $this->field[ 'type' ] ); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | * @return string |
| 208 | 208 | */ |
| 209 | 209 | function get_field_desc() { |
| 210 | - return !empty( $this->field['desc'] ) ? '<span class="howto">'. $this->field['desc'] .'</span>' : ''; |
|
| 210 | + return ! empty( $this->field[ 'desc' ] ) ? '<span class="howto">' . $this->field[ 'desc' ] . '</span>' : ''; |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | */ |
| 241 | 241 | function render_setting( $override_input = NULL ) { |
| 242 | 242 | |
| 243 | - if( !empty( $this->field['full_width'] ) ) { ?> |
|
| 243 | + if ( ! empty( $this->field[ 'full_width' ] ) ) { ?> |
|
| 244 | 244 | <th scope="row" colspan="2"> |
| 245 | 245 | <div> |
| 246 | 246 | <label for="<?php echo $this->get_field_id(); ?>"> |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | * Try subkeys after split. |
| 92 | 92 | */ |
| 93 | 93 | if ( count( $parts = explode( '/', $key, 2 ) ) > 1 ) { |
| 94 | - return self::get( self::get( $array, $parts[0] ), $parts[1], $default ); |
|
| 94 | + return self::get( self::get( $array, $parts[ 0 ] ), $parts[ 1 ], $default ); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | return $default; |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | public static function gf_query_debug( $query ) { |
| 146 | 146 | $introspect = $query->_introspect(); |
| 147 | 147 | return array( |
| 148 | - 'where' => $query->_where_unwrap( $introspect['where'] ) |
|
| 148 | + 'where' => $query->_where_unwrap( $introspect[ 'where' ] ) |
|
| 149 | 149 | ); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | if ( $condition->expressions ) { |
| 159 | 159 | $conditions = array(); |
| 160 | 160 | foreach ( $condition->expressions as $expression ) { |
| 161 | - $conditions[] = self::gf_query_strip_condition_column_aliases( $expression ); |
|
| 161 | + $conditions[ ] = self::gf_query_strip_condition_column_aliases( $expression ); |
|
| 162 | 162 | } |
| 163 | 163 | return call_user_func_array( |
| 164 | 164 | array( '\GF_Query_Condition', $condition->operator == 'AND' ? '_and' : '_or' ), |