@@ -78,12 +78,12 @@ discard block |
||
78 | 78 | |
79 | 79 | $non_gv_modifiers = array_diff( $modifiers, array_keys( $gv_modifiers ) ); |
80 | 80 | |
81 | - $return = $field->get_value_merge_tag( $value, '', array( 'currency' => '' ), array(), implode( '', $non_gv_modifiers ), $raw_value, false, false, 'text', false); |
|
81 | + $return = $field->get_value_merge_tag( $value, '', array( 'currency' => '' ), array(), implode( '', $non_gv_modifiers ), $raw_value, false, false, 'text', false ); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | foreach ( $modifiers as $passed_modifier ) { |
85 | 85 | |
86 | - foreach( $gv_modifiers as $gv_modifier => $method ) { |
|
86 | + foreach ( $gv_modifiers as $gv_modifier => $method ) { |
|
87 | 87 | |
88 | 88 | // Uses ^ to only match the first modifier, to enforce same order as passed by GF |
89 | 89 | preg_match( '/^' . $gv_modifier . '/ism', $passed_modifier, $matches ); |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | */ |
133 | 133 | private static function modifier_timestamp( $raw_value, $matches ) { |
134 | 134 | |
135 | - if( empty( $matches[0] ) ) { |
|
135 | + if ( empty( $matches[ 0 ] ) ) { |
|
136 | 136 | return $raw_value; |
137 | 137 | } |
138 | 138 | |
@@ -161,11 +161,11 @@ discard block |
||
161 | 161 | */ |
162 | 162 | private static function modifier_maxwords( $raw_value, $matches, $field = null ) { |
163 | 163 | |
164 | - if( ! is_string( $raw_value ) || empty( $matches[1] ) || ! function_exists( 'wp_trim_words' ) ) { |
|
164 | + if ( ! is_string( $raw_value ) || empty( $matches[ 1 ] ) || ! function_exists( 'wp_trim_words' ) ) { |
|
165 | 165 | return $raw_value; |
166 | 166 | } |
167 | 167 | |
168 | - $max = intval( $matches[1] ); |
|
168 | + $max = intval( $matches[ 1 ] ); |
|
169 | 169 | |
170 | 170 | $more_placeholder = '[GVMORE]'; |
171 | 171 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | private static function modifier_explode( $raw_value, $matches, $value, $field = null ) { |
235 | 235 | |
236 | 236 | // For JSON-encoded arrays |
237 | - if( $json_array = json_decode( $raw_value, true ) ) { |
|
237 | + if ( $json_array = json_decode( $raw_value, true ) ) { |
|
238 | 238 | return implode( ' ', $json_array ); |
239 | 239 | } |
240 | 240 | |
@@ -255,13 +255,13 @@ discard block |
||
255 | 255 | */ |
256 | 256 | private static function modifier_strings( $raw_value, $matches, $value = '', $field = null ) { |
257 | 257 | |
258 | - if( empty( $matches[0] ) ) { |
|
258 | + if ( empty( $matches[ 0 ] ) ) { |
|
259 | 259 | return $raw_value; |
260 | 260 | } |
261 | 261 | |
262 | 262 | $return = $raw_value; |
263 | 263 | |
264 | - switch( $matches[0] ) { |
|
264 | + switch ( $matches[ 0 ] ) { |
|
265 | 265 | case 'urlencode': |
266 | 266 | $return = urlencode( $raw_value ); |
267 | 267 | break; |
@@ -343,9 +343,9 @@ discard block |
||
343 | 343 | * @internal Fixed $form['title'] in Gravity Forms |
344 | 344 | * @see https://github.com/gravityforms/gravityforms/pull/27/files |
345 | 345 | */ |
346 | - $form['title'] = isset( $form['title'] ) ? $form['title'] : ''; |
|
347 | - $form['id'] = isset( $form['id'] ) ? $form['id'] : ''; |
|
348 | - $form['fields'] = isset( $form['fields'] ) ? $form['fields'] : array(); |
|
346 | + $form[ 'title' ] = isset( $form[ 'title' ] ) ? $form[ 'title' ] : ''; |
|
347 | + $form[ 'id' ] = isset( $form[ 'id' ] ) ? $form[ 'id' ] : ''; |
|
348 | + $form[ 'fields' ] = isset( $form[ 'fields' ] ) ? $form[ 'fields' ] : array(); |
|
349 | 349 | |
350 | 350 | return GFCommon::replace_variables( $text, $form, $entry, $url_encode, $esc_html, $nl2br, $format, $aux_data ); |
351 | 351 | } |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | // Is there is {gv_entry_link} or {gv_entry_link:[post id]} or {gv_entry_link:[post id]:[action]} merge tag? |
407 | 407 | preg_match_all( "/{gv_entry_link(?:\:(\d+)\:?(.*?))?}/ism", $original_text, $matches, PREG_SET_ORDER ); |
408 | 408 | |
409 | - if( empty( $matches ) ) { |
|
409 | + if ( empty( $matches ) ) { |
|
410 | 410 | return $original_text; |
411 | 411 | } |
412 | 412 | |
@@ -427,18 +427,18 @@ discard block |
||
427 | 427 | * } |
428 | 428 | */ |
429 | 429 | foreach ( $matches as $match ) { |
430 | - $full_tag = $match[0]; |
|
430 | + $full_tag = $match[ 0 ]; |
|
431 | 431 | |
432 | 432 | $link_args = array( |
433 | 433 | 'return' => 'url', |
434 | - 'entry_id' => $entry['id'], |
|
434 | + 'entry_id' => $entry[ 'id' ], |
|
435 | 435 | 'post_id' => \GV\Utils::get( $match, 1, null ), |
436 | 436 | 'action' => \GV\Utils::get( $match, 2, 'read' ), |
437 | 437 | ); |
438 | 438 | |
439 | 439 | $entry_link = $Shortcode->read_shortcode( $link_args, null, 'gv_entry_link_merge_tag' ); |
440 | 440 | |
441 | - if( $url_encode ) { |
|
441 | + if ( $url_encode ) { |
|
442 | 442 | $entry_link = urlencode( $entry_link ); |
443 | 443 | } |
444 | 444 | |
@@ -475,7 +475,7 @@ discard block |
||
475 | 475 | 'diff' => in_array( 'diff', $exploded ), // {date_created:diff} |
476 | 476 | 'raw' => in_array( 'raw', $exploded ), // {date_created:raw} |
477 | 477 | 'timestamp' => in_array( 'timestamp', $exploded ), // {date_created:timestamp} |
478 | - 'time' => in_array( 'time', $exploded ), // {date_created:time} |
|
478 | + 'time' => in_array( 'time', $exploded ), // {date_created:time} |
|
479 | 479 | ); |
480 | 480 | |
481 | 481 | $formatted_date = GVCommon::format_date( $date_created, $atts ); |
@@ -552,8 +552,8 @@ discard block |
||
552 | 552 | return $original_text; |
553 | 553 | } |
554 | 554 | |
555 | - foreach ( (array) $matches as $match ) { |
|
556 | - $full_tag = $match[0]; |
|
555 | + foreach ( (array)$matches as $match ) { |
|
556 | + $full_tag = $match[ 0 ]; |
|
557 | 557 | $modifier = \GV\Utils::get( $match, 2, 'permalink' ); |
558 | 558 | |
559 | 559 | $replacement = false; |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | $replacement = esc_html( $replacement ); |
572 | 572 | } |
573 | 573 | |
574 | - if( $url_encode ) { |
|
574 | + if ( $url_encode ) { |
|
575 | 575 | $replacement = urlencode( $replacement ); |
576 | 576 | } |
577 | 577 | |
@@ -611,14 +611,14 @@ discard block |
||
611 | 611 | preg_match_all( "/{get:(.*?)}/ism", $text, $matches, PREG_SET_ORDER ); |
612 | 612 | |
613 | 613 | // If there are no matches OR the Entry `created_by` isn't set or is 0 (no user) |
614 | - if( empty( $matches ) ) { |
|
614 | + if ( empty( $matches ) ) { |
|
615 | 615 | return $text; |
616 | 616 | } |
617 | 617 | |
618 | 618 | foreach ( $matches as $match ) { |
619 | 619 | |
620 | - $full_tag = $match[0]; |
|
621 | - $property = $match[1]; |
|
620 | + $full_tag = $match[ 0 ]; |
|
621 | + $property = $match[ 1 ]; |
|
622 | 622 | |
623 | 623 | $value = stripslashes_deep( \GV\Utils::_GET( $property ) ); |
624 | 624 | |
@@ -642,7 +642,7 @@ discard block |
||
642 | 642 | * @since 1.15 |
643 | 643 | * @param bool $esc_html Whether to esc_html() the value. Default: `true` |
644 | 644 | */ |
645 | - $esc_html = apply_filters('gravityview/merge_tags/get/esc_html/' . $property, true ); |
|
645 | + $esc_html = apply_filters( 'gravityview/merge_tags/get/esc_html/' . $property, true ); |
|
646 | 646 | |
647 | 647 | $value = $esc_html ? esc_html( $value ) : $value; |
648 | 648 | |
@@ -653,7 +653,7 @@ discard block |
||
653 | 653 | * @param[in] array $form Gravity Forms form array |
654 | 654 | * @param[in] array $entry Entry array |
655 | 655 | */ |
656 | - $value = apply_filters('gravityview/merge_tags/get/value/' . $property, $value, $text, $form, $entry ); |
|
656 | + $value = apply_filters( 'gravityview/merge_tags/get/value/' . $property, $value, $text, $form, $entry ); |
|
657 | 657 | |
658 | 658 | $text = str_replace( $full_tag, $value, $text ); |
659 | 659 | } |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * @see RGFormsModel::update_lead_property() Trigger when any entry property changes |
83 | 83 | */ |
84 | - foreach( $this->lead_db_columns as $column ) { |
|
84 | + foreach ( $this->lead_db_columns as $column ) { |
|
85 | 85 | add_action( 'gform_update_' . $column, array( $this, 'entry_status_changed' ), 10, 3 ); |
86 | 86 | } |
87 | 87 | |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | return; |
115 | 115 | } |
116 | 116 | |
117 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry['form_id'], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
117 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{lead_id} was deleted', array( 'form_id' => $entry[ 'form_id' ], 'entry_id' => $lead_id, 'data' => array( 'value' => $property_value, 'previous' => $previous_value ) ) ); |
|
118 | 118 | |
119 | - $this->blacklist_add( $entry['form_id'] ); |
|
119 | + $this->blacklist_add( $entry[ 'form_id' ] ); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -129,9 +129,9 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function entry_updated( $form, $lead_id ) { |
131 | 131 | |
132 | - gravityview()->log->debug(' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form['id'], 'entry_id' => $lead_id ) ); |
|
132 | + gravityview()->log->debug( ' adding form {form_id} to blacklist because entry #{entry_id} was updated', array( 'form_id' => $form[ 'id' ], 'entry_id' => $lead_id ) ); |
|
133 | 133 | |
134 | - $this->blacklist_add( $form['id'] ); |
|
134 | + $this->blacklist_add( $form[ 'id' ] ); |
|
135 | 135 | } |
136 | 136 | |
137 | 137 | /** |
@@ -146,9 +146,9 @@ discard block |
||
146 | 146 | */ |
147 | 147 | public function entry_created( $entry, $form ) { |
148 | 148 | |
149 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
149 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was created', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
150 | 150 | |
151 | - $this->blacklist_add( $form['id'] ); |
|
151 | + $this->blacklist_add( $form[ 'id' ] ); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
@@ -164,9 +164,9 @@ discard block |
||
164 | 164 | return; |
165 | 165 | } |
166 | 166 | |
167 | - gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form['id'], 'entry_id' => $entry['id'] ) ); |
|
167 | + gravityview()->log->debug( 'adding form {form_id} to blacklist because entry #{entry_id} was added', array( 'form_id' => $form[ 'id' ], 'entry_id' => $entry[ 'id' ] ) ); |
|
168 | 168 | |
169 | - $this->blacklist_add( $form['id'] ); |
|
169 | + $this->blacklist_add( $form[ 'id' ] ); |
|
170 | 170 | } |
171 | 171 | |
172 | 172 | /** |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | // Normally just one form, but supports multiple forms |
186 | 186 | // |
187 | 187 | // Array of IDs 12, 5, 14 would result in `f:12-f:5-f:14` |
188 | - $forms = 'f:' . implode( '-f:', (array) $form_ids ); |
|
188 | + $forms = 'f:' . implode( '-f:', (array)$form_ids ); |
|
189 | 189 | |
190 | 190 | // Prefix for transient keys |
191 | 191 | // Now the prefix would be: `gv-cache-f:12-f:5-f:14-` |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | ) ) ); |
243 | 243 | |
244 | 244 | // Add the passed form IDs |
245 | - $blacklist = array_merge( (array) $blacklist, $form_ids ); |
|
245 | + $blacklist = array_merge( (array)$blacklist, $form_ids ); |
|
246 | 246 | |
247 | 247 | // Don't duplicate |
248 | 248 | $blacklist = array_unique( $blacklist ); |
@@ -265,7 +265,7 @@ discard block |
||
265 | 265 | |
266 | 266 | $blacklist = get_option( self::BLACKLIST_OPTION_NAME, array() ); |
267 | 267 | |
268 | - $updated_list = array_diff( $blacklist, (array) $form_ids ); |
|
268 | + $updated_list = array_diff( $blacklist, (array)$form_ids ); |
|
269 | 269 | |
270 | 270 | gravityview()->log->debug( 'Removing form IDs from cache blacklist', array( 'data' => array( |
271 | 271 | '$form_ids' => $form_ids, |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | return false; |
299 | 299 | } |
300 | 300 | |
301 | - foreach ( (array) $form_ids as $form_id ) { |
|
301 | + foreach ( (array)$form_ids as $form_id ) { |
|
302 | 302 | |
303 | 303 | if ( in_array( $form_id, $blacklist ) ) { |
304 | 304 | |
@@ -370,7 +370,7 @@ discard block |
||
370 | 370 | * @filter `gravityview_cache_time_{$filter_name}` Modify the cache time for a type of cache |
371 | 371 | * @param int $time_in_seconds Default: `DAY_IN_SECONDS` |
372 | 372 | */ |
373 | - $cache_time = (int) apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
373 | + $cache_time = (int)apply_filters( 'gravityview_cache_time_' . $filter_name, DAY_IN_SECONDS ); |
|
374 | 374 | |
375 | 375 | gravityview()->log->debug( 'Setting cache with transient key {key} for {cache_time} seconds', array( 'key' => $this->key, 'cache_time' => $cache_time ) ); |
376 | 376 | |
@@ -406,7 +406,7 @@ discard block |
||
406 | 406 | return; |
407 | 407 | } |
408 | 408 | |
409 | - foreach ( (array) $form_ids as $form_id ) { |
|
409 | + foreach ( (array)$form_ids as $form_id ) { |
|
410 | 410 | |
411 | 411 | $key = '_transient_gv-cache-'; |
412 | 412 | |
@@ -522,7 +522,7 @@ discard block |
||
522 | 522 | public function use_cache() { |
523 | 523 | |
524 | 524 | // Exit early if debugging (unless running PHPUnit) |
525 | - if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined('DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
525 | + if ( defined( 'WP_DEBUG' ) && WP_DEBUG && ! ( defined( 'DOING_GRAVITYVIEW_TESTS' ) && DOING_GRAVITYVIEW_TESTS ) ) { |
|
526 | 526 | return apply_filters( 'gravityview_use_cache', false, $this ); |
527 | 527 | } |
528 | 528 | |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | |
531 | 531 | if ( GVCommon::has_cap( 'edit_gravityviews' ) ) { |
532 | 532 | |
533 | - if ( isset( $_GET['cache'] ) || isset( $_GET['nocache'] ) ) { |
|
533 | + if ( isset( $_GET[ 'cache' ] ) || isset( $_GET[ 'nocache' ] ) ) { |
|
534 | 534 | |
535 | 535 | gravityview()->log->debug( 'Not using cache: ?cache or ?nocache is in the URL' ); |
536 | 536 | |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | */ |
558 | 558 | $use_cache = apply_filters( 'gravityview_use_cache', $use_cache, $this ); |
559 | 559 | |
560 | - return (boolean) $use_cache; |
|
560 | + return (boolean)$use_cache; |
|
561 | 561 | } |
562 | 562 | |
563 | 563 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | $meta_keys = apply_filters_ref_array( 'gravityview/view_collection/from_post/meta_keys', array( array(), $post, &$views ) ); |
100 | 100 | |
101 | 101 | if ( function_exists( 'apply_filters_deprecated' ) ) { |
102 | - $meta_keys = (array) apply_filters_deprecated( 'gravityview/data/parse/meta_keys', array( $meta_keys, $post->ID ), '2.0.7', 'gravityview/view_collection/from_post/meta_keys' ); |
|
102 | + $meta_keys = (array)apply_filters_deprecated( 'gravityview/data/parse/meta_keys', array( $meta_keys, $post->ID ), '2.0.7', 'gravityview/view_collection/from_post/meta_keys' ); |
|
103 | 103 | } else { |
104 | 104 | /** |
105 | 105 | * @filter `gravityview/data/parse/meta_keys` |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * @todo Require WP 4.6.0 so that `apply_filters_deprecated` is always available |
108 | 108 | * @see The `gravityview/view_collection/from_post/meta_keys` filter. |
109 | 109 | */ |
110 | - $meta_keys = (array) apply_filters( 'gravityview/data/parse/meta_keys', $meta_keys, $post->ID ); |
|
110 | + $meta_keys = (array)apply_filters( 'gravityview/data/parse/meta_keys', $meta_keys, $post->ID ); |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | /** What about inside post meta values? */ |
@@ -137,12 +137,12 @@ discard block |
||
137 | 137 | |
138 | 138 | /** Let's find us some [gravityview] shortcodes perhaps. */ |
139 | 139 | foreach ( Shortcode::parse( $content ) as $shortcode ) { |
140 | - if ( $shortcode->name != 'gravityview' || empty( $shortcode->atts['id'] ) ) { |
|
140 | + if ( $shortcode->name != 'gravityview' || empty( $shortcode->atts[ 'id' ] ) ) { |
|
141 | 141 | continue; |
142 | 142 | } |
143 | 143 | |
144 | - if ( is_numeric( $shortcode->atts['id'] ) ) { |
|
145 | - $view = View::by_id( $shortcode->atts['id'] ); |
|
144 | + if ( is_numeric( $shortcode->atts[ 'id' ] ) ) { |
|
145 | + $view = View::by_id( $shortcode->atts[ 'id' ] ); |
|
146 | 146 | if ( ! $view ) { |
147 | 147 | continue; |
148 | 148 | } |
@@ -110,9 +110,9 @@ discard block |
||
110 | 110 | private function maybe_add_hooks() { |
111 | 111 | $class_exists = $this->class_name && class_exists( $this->class_name ); |
112 | 112 | $function_exists = $this->function_name && function_exists( $this->function_name ); |
113 | - $constant_defined = $this->constant_name && defined("{$this->constant_name}"); |
|
113 | + $constant_defined = $this->constant_name && defined( "{$this->constant_name}" ); |
|
114 | 114 | |
115 | - if( $class_exists || $function_exists || $constant_defined ) { |
|
115 | + if ( $class_exists || $function_exists || $constant_defined ) { |
|
116 | 116 | $this->add_hooks(); |
117 | 117 | } |
118 | 118 | } |
@@ -124,23 +124,23 @@ discard block |
||
124 | 124 | */ |
125 | 125 | protected function add_hooks() { |
126 | 126 | |
127 | - if( $this->meta_keys ) { |
|
127 | + if ( $this->meta_keys ) { |
|
128 | 128 | add_filter( 'gravityview/data/parse/meta_keys', array( $this, 'merge_meta_keys' ), 10, 2 ); |
129 | 129 | } |
130 | 130 | |
131 | - if( $this->content_meta_keys ) { |
|
131 | + if ( $this->content_meta_keys ) { |
|
132 | 132 | add_filter( 'gravityview/view_collection/from_post/meta_keys', array( $this, 'merge_content_meta_keys' ), 10, 3 ); |
133 | 133 | } |
134 | 134 | |
135 | - if( $this->script_handles ) { |
|
135 | + if ( $this->script_handles ) { |
|
136 | 136 | add_filter( 'gravityview_noconflict_scripts', array( $this, 'merge_noconflict_scripts' ) ); |
137 | 137 | } |
138 | 138 | |
139 | - if( $this->style_handles ) { |
|
139 | + if ( $this->style_handles ) { |
|
140 | 140 | add_filter( 'gravityview_noconflict_styles', array( $this, 'merge_noconflict_styles' ) ); |
141 | 141 | } |
142 | 142 | |
143 | - if( $this->post_type_support ) { |
|
143 | + if ( $this->post_type_support ) { |
|
144 | 144 | add_filter( 'gravityview_post_type_support', array( $this, 'merge_post_type_support' ), 10, 2 ); |
145 | 145 | } |
146 | 146 | } |
@@ -39,19 +39,19 @@ discard block |
||
39 | 39 | */ |
40 | 40 | function merge_content_meta_keys( $meta_keys = array(), $post = null, & $views = null ) { |
41 | 41 | |
42 | - if( empty( $post->panels_data ) || empty( $post->panels_data['widgets'] ) ) { |
|
42 | + if ( empty( $post->panels_data ) || empty( $post->panels_data[ 'widgets' ] ) ) { |
|
43 | 43 | return $meta_keys; |
44 | 44 | } |
45 | 45 | |
46 | - foreach ( (array) $post->panels_data['widgets'] as $widget ) { |
|
46 | + foreach ( (array)$post->panels_data[ 'widgets' ] as $widget ) { |
|
47 | 47 | |
48 | 48 | $views->merge( \GV\View_Collection::from_content( \GV\Utils::get( $widget, 'text' ) ) ); |
49 | 49 | |
50 | - if ( empty( $widget['tabs'] ) || ! is_array( $widget['tabs'] ) ) { |
|
50 | + if ( empty( $widget[ 'tabs' ] ) || ! is_array( $widget[ 'tabs' ] ) ) { |
|
51 | 51 | continue; |
52 | 52 | } |
53 | 53 | |
54 | - foreach ( $widget['tabs'] as $tab ) { |
|
54 | + foreach ( $widget[ 'tabs' ] as $tab ) { |
|
55 | 55 | |
56 | 56 | // Livemesh Tabs |
57 | 57 | $backup = \GV\Utils::get( $tab, 'tab_content' ); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | // SiteOrigin Tabs |
60 | 60 | $content = \GV\Utils::get( $tab, 'content_text', $backup ); |
61 | 61 | |
62 | - if( $content ) { |
|
62 | + if ( $content ) { |
|
63 | 63 | $views->merge( \GV\View_Collection::from_content( $content ) ); |
64 | 64 | } |
65 | 65 | } |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | |
56 | 56 | $acf_keys = get_field_objects( $post->ID, array( 'load_value' => false ) ); |
57 | 57 | |
58 | - if( $acf_keys ) { |
|
58 | + if ( $acf_keys ) { |
|
59 | 59 | return array_merge( array_keys( $acf_keys ), $meta_keys ); |
60 | 60 | } |
61 | 61 | |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | * @return void |
71 | 71 | */ |
72 | 72 | private function fix_posted_fields() { |
73 | - if( is_admin() && isset( $_POST['action'] ) && isset( $_POST['post_type'] ) ) { |
|
74 | - if( 'editpost' === $_POST['action'] && 'gravityview' === $_POST['post_type'] ) { |
|
75 | - $_POST['fields'] = _gravityview_process_posted_fields(); |
|
73 | + if ( is_admin() && isset( $_POST[ 'action' ] ) && isset( $_POST[ 'post_type' ] ) ) { |
|
74 | + if ( 'editpost' === $_POST[ 'action' ] && 'gravityview' === $_POST[ 'post_type' ] ) { |
|
75 | + $_POST[ 'fields' ] = _gravityview_process_posted_fields(); |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 | } |
@@ -44,16 +44,16 @@ discard block |
||
44 | 44 | */ |
45 | 45 | $atts = apply_filters( 'gravityview/shortcodes/gventry/atts', $atts ); |
46 | 46 | |
47 | - $view = \GV\View::by_id( $atts['view_id'] ); |
|
47 | + $view = \GV\View::by_id( $atts[ 'view_id' ] ); |
|
48 | 48 | |
49 | 49 | if ( ! $view ) { |
50 | - gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts['view_id'] ) ); |
|
50 | + gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts[ 'view_id' ] ) ); |
|
51 | 51 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', null, null, $atts ); |
52 | 52 | } |
53 | 53 | |
54 | - $entry_id = ! empty( $atts['entry_id'] ) ? $atts['entry_id'] : $atts['id']; |
|
54 | + $entry_id = ! empty( $atts[ 'entry_id' ] ) ? $atts[ 'entry_id' ] : $atts[ 'id' ]; |
|
55 | 55 | |
56 | - switch( $entry_id ): |
|
56 | + switch ( $entry_id ): |
|
57 | 57 | case 'last': |
58 | 58 | if ( class_exists( '\GF_Query' ) ) { |
59 | 59 | /** |
@@ -62,17 +62,17 @@ discard block |
||
62 | 62 | * Since we're using \GF_Query shorthand initialization we have to reverse the order parameters here. |
63 | 63 | */ |
64 | 64 | add_filter( 'gravityview_get_entries', $filter = function( $parameters, $args, $form_id ) { |
65 | - if ( ! empty( $parameters['sorting'] ) ) { |
|
65 | + if ( ! empty( $parameters[ 'sorting' ] ) ) { |
|
66 | 66 | /** |
67 | 67 | * Reverse existing sorts. |
68 | 68 | */ |
69 | - $sort = &$parameters['sorting']; |
|
70 | - $sort['direction'] = $sort['direction'] == 'RAND' ? : ( $sort['direction'] == 'ASC' ? 'DESC' : 'ASC' ); |
|
69 | + $sort = &$parameters[ 'sorting' ]; |
|
70 | + $sort[ 'direction' ] = $sort[ 'direction' ] == 'RAND' ?: ( $sort[ 'direction' ] == 'ASC' ? 'DESC' : 'ASC' ); |
|
71 | 71 | } else { |
72 | 72 | /** |
73 | 73 | * Otherwise, sort by date_created. |
74 | 74 | */ |
75 | - $parameters['sorting'] = array( |
|
75 | + $parameters[ 'sorting' ] = array( |
|
76 | 76 | 'key' => 'id', |
77 | 77 | 'direction' => 'ASC', |
78 | 78 | 'is_numeric' => true |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | |
88 | 88 | /** If a sort already exists, reverse it. */ |
89 | 89 | if ( $sort = end( $entries->sorts ) ) { |
90 | - $entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ? : ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode ); |
|
90 | + $entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ?: ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode ); |
|
91 | 91 | } else { |
92 | 92 | /** Otherwise, sort by date_created */ |
93 | 93 | $entries = $entries->sort( new \GV\Entry_Sort( \GV\Internal_Field::by_id( 'id' ), \GV\Entry_Sort::ASC ), \GV\Entry_Sort::NUMERIC ); |
@@ -105,12 +105,12 @@ discard block |
||
105 | 105 | break; |
106 | 106 | default: |
107 | 107 | if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) { |
108 | - gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts['view_id'] ) ); |
|
108 | + gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts[ 'view_id' ] ) ); |
|
109 | 109 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, null, $atts ); |
110 | 110 | } |
111 | 111 | endswitch; |
112 | 112 | |
113 | - if ( $view->form->ID != $entry['form_id'] ) { |
|
113 | + if ( $view->form->ID != $entry[ 'form_id' ] ) { |
|
114 | 114 | gravityview()->log->error( 'Entry does not belong to view (form mismatch)' ); |
115 | 115 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
116 | 116 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | return apply_filters( 'gravityview/shortcodes/gventry/output', get_the_password_form( $view->ID ), $view, $entry, $atts ); |
121 | 121 | } |
122 | 122 | |
123 | - if ( ! $view->form ) { |
|
123 | + if ( ! $view->form ) { |
|
124 | 124 | gravityview()->log->notice( 'View #{id} has no form attached to it.', array( 'id' => $view->ID ) ); |
125 | 125 | |
126 | 126 | /** |
@@ -143,15 +143,15 @@ discard block |
||
143 | 143 | } |
144 | 144 | |
145 | 145 | /** Unapproved entries. */ |
146 | - if ( $entry['status'] != 'active' ) { |
|
146 | + if ( $entry[ 'status' ] != 'active' ) { |
|
147 | 147 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
148 | 148 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
149 | 149 | } |
150 | 150 | |
151 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
151 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
152 | 152 | |
153 | 153 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
154 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
154 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
155 | 155 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
156 | 156 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
157 | 157 | } |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | $renderer = new \GV\Entry_Renderer(); |
164 | 164 | |
165 | 165 | $request = new \GV\Mock_Request(); |
166 | - $request->returns['is_entry'] = $entry; |
|
166 | + $request->returns[ 'is_entry' ] = $entry; |
|
167 | 167 | |
168 | 168 | $output = $renderer->render( $entry, $view, $request ); |
169 | 169 |
@@ -29,12 +29,12 @@ |
||
29 | 29 | */ |
30 | 30 | public static function from_configuration( $configuration ) { |
31 | 31 | |
32 | - if ( empty( $configuration['id'] ) || ! is_string( $configuration['id'] ) ) { |
|
32 | + if ( empty( $configuration[ 'id' ] ) || ! is_string( $configuration[ 'id' ] ) ) { |
|
33 | 33 | gravityview()->log->error( 'Invalid configuration[id] supplied.' ); |
34 | 34 | return null; |
35 | 35 | } |
36 | 36 | |
37 | - $field = self::by_id( $configuration['id'] ); |
|
37 | + $field = self::by_id( $configuration[ 'id' ] ); |
|
38 | 38 | |
39 | 39 | $field->update_configuration( $configuration ); |
40 | 40 |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | |
41 | 41 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
42 | 42 | |
43 | - unset ( $field_options['search_filter'], $field_options['show_as_link'] ); |
|
43 | + unset ( $field_options[ 'search_filter' ], $field_options[ 'show_as_link' ] ); |
|
44 | 44 | |
45 | 45 | $new_fields = array( |
46 | 46 | 'content' => array( |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | ); |
69 | 69 | |
70 | 70 | if ( 'edit' === $context ) { |
71 | - unset( $field_options['custom_label'], $field_options['show_label'], $field_options['allow_edit_cap'], $new_fields['wpautop'], $new_fields['oembed'] ); |
|
71 | + unset( $field_options[ 'custom_label' ], $field_options[ 'show_label' ], $field_options[ 'allow_edit_cap' ], $new_fields[ 'wpautop' ], $new_fields[ 'oembed' ] ); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return $new_fields + $field_options; |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | |
103 | 103 | // Loop through the configured Edit Entry fields and add Custom Content fields if there are any |
104 | 104 | // TODO: Make this available to other custom GV field types |
105 | - foreach ( (array) $edit_fields as $edit_field ) { |
|
105 | + foreach ( (array)$edit_fields as $edit_field ) { |
|
106 | 106 | |
107 | - if( 'custom' === \GV\Utils::get( $edit_field, 'id') ) { |
|
107 | + if ( 'custom' === \GV\Utils::get( $edit_field, 'id' ) ) { |
|
108 | 108 | |
109 | 109 | $field_data = array( |
110 | 110 | 'label' => \GV\Utils::get( $edit_field, 'custom_label' ), |
@@ -117,13 +117,13 @@ discard block |
||
117 | 117 | $field_data[ $key ] = GravityView_Merge_Tags::replace_variables( $field_datum, $form, $entry->as_entry(), false, false ); |
118 | 118 | } |
119 | 119 | |
120 | - $field_data['cssClass'] = \GV\Utils::get( $edit_field, 'custom_class' ); |
|
120 | + $field_data[ 'cssClass' ] = \GV\Utils::get( $edit_field, 'custom_class' ); |
|
121 | 121 | |
122 | - $new_fields[] = new GF_Field_HTML( $field_data ); |
|
122 | + $new_fields[ ] = new GF_Field_HTML( $field_data ); |
|
123 | 123 | |
124 | 124 | } else { |
125 | - if( isset( $fields[ $i ] ) ) { |
|
126 | - $new_fields[] = $fields[ $i ]; |
|
125 | + if ( isset( $fields[ $i ] ) ) { |
|
126 | + $new_fields[ ] = $fields[ $i ]; |
|
127 | 127 | } |
128 | 128 | $i++; |
129 | 129 | } |