@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | /** Deprecated, see \GV\View_Collection::from_post */ |
102 | 102 | if( ( get_post_type( $post ) === 'gravityview' ) ) { |
103 | 103 | $ids[] = $post->ID; |
104 | - } else{ |
|
104 | + } else { |
|
105 | 105 | // Parse the Post Content |
106 | 106 | $id = $this->parse_post_content( $post->post_content ); |
107 | 107 | if( $id ) { |
@@ -646,7 +646,7 @@ discard block |
||
646 | 646 | } |
647 | 647 | |
648 | 648 | if( ! $message ) { |
649 | - if ( defined( 'GRAVITYVIEW_FUTURE_CORE_LOADED' ) && $post = get_post( $post_id ) ) { |
|
649 | + if ( defined( 'GRAVITYVIEW_FUTURE_CORE_LOADED' ) && $post = get_post( $post_id ) ) { |
|
650 | 650 | $views = GV\View_Collection::from_post( $post ); |
651 | 651 | $view_ids_in_post = array_map( function( $view ) { return $view->ID; }, $views->all() ); |
652 | 652 | } else { |
@@ -458,7 +458,7 @@ discard block |
||
458 | 458 | } |
459 | 459 | |
460 | 460 | // User reported WooCommerce doesn't pass two args. |
461 | - if ( empty( $passed_post_id ) ) { |
|
461 | + if ( empty( $passed_post_id ) ) { |
|
462 | 462 | return $title; |
463 | 463 | } |
464 | 464 | |
@@ -494,8 +494,9 @@ discard block |
||
494 | 494 | } |
495 | 495 | |
496 | 496 | /** No matching form sources were found, happens when requesting an entry from a different form . */ |
497 | - if ( ! isset( $view ) ) |
|
498 | - return $title; |
|
497 | + if ( ! isset( $view ) ) { |
|
498 | + return $title; |
|
499 | + } |
|
499 | 500 | } else { |
500 | 501 | /** Deprecated. Use gravityview()->views->all() or gravityview()->request->all() */ |
501 | 502 | foreach ( $this->getGvOutputData()->get_views() as $view_id => $view_data ) { |
@@ -1478,7 +1479,7 @@ discard block |
||
1478 | 1479 | */ |
1479 | 1480 | $address_part = apply_filters( 'gravityview/sorting/address', 'city', $sort_field_id, $form_id ); |
1480 | 1481 | |
1481 | - switch( strtolower( $address_part ) ){ |
|
1482 | + switch( strtolower( $address_part ) ) { |
|
1482 | 1483 | case 'street': |
1483 | 1484 | $sort_field_id .= '.1'; |
1484 | 1485 | break; |
@@ -1563,7 +1564,7 @@ discard block |
||
1563 | 1564 | */ |
1564 | 1565 | $single_entry = apply_filters( 'gravityview/is_single_entry', $single_entry ); |
1565 | 1566 | |
1566 | - if ( empty( $single_entry ) ){ |
|
1567 | + if ( empty( $single_entry ) ) { |
|
1567 | 1568 | return false; |
1568 | 1569 | } else { |
1569 | 1570 | return $single_entry; |
@@ -36,8 +36,7 @@ discard block |
||
36 | 36 | * |
37 | 37 | * @return void |
38 | 38 | */ |
39 | - public function emergency($message, array $context = array()) |
|
40 | - { |
|
39 | + public function emergency($message, array $context = array()) { |
|
41 | 40 | $this->log(LogLevel::EMERGENCY, $message, $context); |
42 | 41 | } |
43 | 42 | |
@@ -52,8 +51,7 @@ discard block |
||
52 | 51 | * |
53 | 52 | * @return void |
54 | 53 | */ |
55 | - public function alert($message, array $context = array()) |
|
56 | - { |
|
54 | + public function alert($message, array $context = array()) { |
|
57 | 55 | $this->log(LogLevel::ALERT, $message, $context); |
58 | 56 | } |
59 | 57 | |
@@ -67,8 +65,7 @@ discard block |
||
67 | 65 | * |
68 | 66 | * @return void |
69 | 67 | */ |
70 | - public function critical($message, array $context = array()) |
|
71 | - { |
|
68 | + public function critical($message, array $context = array()) { |
|
72 | 69 | $this->log(LogLevel::CRITICAL, $message, $context); |
73 | 70 | } |
74 | 71 | |
@@ -81,8 +78,7 @@ discard block |
||
81 | 78 | * |
82 | 79 | * @return void |
83 | 80 | */ |
84 | - public function error($message, array $context = array()) |
|
85 | - { |
|
81 | + public function error($message, array $context = array()) { |
|
86 | 82 | $this->log(LogLevel::ERROR, $message, $context); |
87 | 83 | } |
88 | 84 | |
@@ -97,8 +93,7 @@ discard block |
||
97 | 93 | * |
98 | 94 | * @return void |
99 | 95 | */ |
100 | - public function warning($message, array $context = array()) |
|
101 | - { |
|
96 | + public function warning($message, array $context = array()) { |
|
102 | 97 | $this->log(LogLevel::WARNING, $message, $context); |
103 | 98 | } |
104 | 99 | |
@@ -110,8 +105,7 @@ discard block |
||
110 | 105 | * |
111 | 106 | * @return void |
112 | 107 | */ |
113 | - public function notice($message, array $context = array()) |
|
114 | - { |
|
108 | + public function notice($message, array $context = array()) { |
|
115 | 109 | $this->log(LogLevel::NOTICE, $message, $context); |
116 | 110 | } |
117 | 111 | |
@@ -125,8 +119,7 @@ discard block |
||
125 | 119 | * |
126 | 120 | * @return void |
127 | 121 | */ |
128 | - public function info($message, array $context = array()) |
|
129 | - { |
|
122 | + public function info($message, array $context = array()) { |
|
130 | 123 | $this->log(LogLevel::INFO, $message, $context); |
131 | 124 | } |
132 | 125 | |
@@ -138,8 +131,7 @@ discard block |
||
138 | 131 | * |
139 | 132 | * @return void |
140 | 133 | */ |
141 | - public function debug($message, array $context = array()) |
|
142 | - { |
|
134 | + public function debug($message, array $context = array()) { |
|
143 | 135 | $this->log(LogLevel::DEBUG, $message, $context); |
144 | 136 | } |
145 | 137 |