@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function maybe_add_article_to_tooltip( $tooltip = '', $article = array(), $url = '', $atts = '', $css_class = '', $anchor_text = '' ) { |
55 | 55 | |
56 | - if ( empty( $article['id'] ) ) { |
|
56 | + if ( empty( $article[ 'id' ] ) ) { |
|
57 | 57 | return $tooltip; |
58 | 58 | } |
59 | 59 | |
@@ -69,10 +69,10 @@ discard block |
||
69 | 69 | |
70 | 70 | $css_class .= ' gv_tooltip'; |
71 | 71 | |
72 | - if ( ! empty( $article['type'] ) ) { |
|
73 | - $atts = sprintf( 'data-beacon-article-%s="%s"', $article['type'], $article['id'] ); |
|
72 | + if ( ! empty( $article[ 'type' ] ) ) { |
|
73 | + $atts = sprintf( 'data-beacon-article-%s="%s"', $article[ 'type' ], $article[ 'id' ] ); |
|
74 | 74 | } else { |
75 | - $atts = sprintf( 'data-beacon-article="%s"', $article['id'] ); |
|
75 | + $atts = sprintf( 'data-beacon-article="%s"', $article[ 'id' ] ); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | $url = \GV\Utils::get( $article, 'url', '#' ); |
@@ -172,9 +172,9 @@ discard block |
||
172 | 172 | ) ); |
173 | 173 | |
174 | 174 | // This is just HTML we don't need. |
175 | - unset( $response['message'] ); |
|
175 | + unset( $response[ 'message' ] ); |
|
176 | 176 | |
177 | - switch ( intval( $response['price_id'] ) ) { |
|
177 | + switch ( intval( $response[ 'price_id' ] ) ) { |
|
178 | 178 | default: |
179 | 179 | case 1: |
180 | 180 | $package = 'Core'; |
@@ -202,12 +202,12 @@ discard block |
||
202 | 202 | 'signature' => hash_hmac( 'sha256', $current_user->user_email, self::beacon_key ), |
203 | 203 | 'affiliate_id' => gravityview()->plugin->settings->get( 'affiliate_id' ), |
204 | 204 | 'is_super_admin' => is_super_admin(), |
205 | - 'license_key' => $response['license_key'] . ' (' . ucwords( $response['license'] ) . ')', |
|
205 | + 'license_key' => $response[ 'license_key' ] . ' (' . ucwords( $response[ 'license' ] ) . ')', |
|
206 | 206 | 'license_level' => $package, |
207 | 207 | 'alt_emails' => sprintf( 'Admin: %s, GV Support: %s', get_bloginfo( 'admin_email' ), gravityview()->plugin->settings->get( 'support-email' ) ), |
208 | - 'payment_details' => $response['customer_name'] . ' ' . $response['customer_email'], |
|
208 | + 'payment_details' => $response[ 'customer_name' ] . ' ' . $response[ 'customer_email' ], |
|
209 | 209 | 'wordpress_version' => get_bloginfo( 'version', 'display' ), |
210 | - 'php_version' => phpversion() . ' on ' . esc_html( $_SERVER['SERVER_SOFTWARE'] ), |
|
210 | + 'php_version' => phpversion() . ' on ' . esc_html( $_SERVER[ 'SERVER_SOFTWARE' ] ), |
|
211 | 211 | 'no_conflict_mode' => empty( $no_conflict_mode ) ? 'Disabled' : 'Enabled', |
212 | 212 | 'gravityview_version' => \GV\Plugin::$version, |
213 | 213 | 'gravity_forms_version' => GFForms::$version, |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | ob_get_clean(); |
218 | 218 | |
219 | 219 | // Help Scout length limit is 200 characters |
220 | - foreach( $data as $key => $value ) { |
|
220 | + foreach ( $data as $key => $value ) { |
|
221 | 221 | if ( ! is_string( $value ) ) { |
222 | 222 | continue; |
223 | 223 | } |
@@ -47,9 +47,9 @@ discard block |
||
47 | 47 | |
48 | 48 | foreach ( $field->choices as $choice ) { |
49 | 49 | if ( is_array( $value ) && RGFormsModel::choice_value_match( $field, $choice, $value[ $input_id ] ) ) { |
50 | - return $choice['score']; |
|
50 | + return $choice[ 'score' ]; |
|
51 | 51 | } else if ( ! is_array( $value ) && RGFormsModel::choice_value_match( $field, $choice, $value ) ) { |
52 | - return $choice['score']; |
|
52 | + return $choice[ 'score' ]; |
|
53 | 53 | } |
54 | 54 | } |
55 | 55 | |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | |
59 | 59 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
60 | 60 | |
61 | - unset( $field_options['search_filter'] ); |
|
61 | + unset( $field_options[ 'search_filter' ] ); |
|
62 | 62 | |
63 | 63 | if ( 'edit' === $context ) { |
64 | 64 | return $field_options; |
@@ -80,18 +80,18 @@ discard block |
||
80 | 80 | 'text' => __( 'Text value of the selected choice', 'gravityview' ) . ( $show_suffix ? '' : $multiple_rows_suffix ), |
81 | 81 | ); |
82 | 82 | |
83 | - if( $field->field->gsurveyLikertEnableScoring ) { |
|
84 | - $likert_display_options['score'] = __( 'Score value of the selected choice', 'gravityview' ) . ( $show_suffix ? '' : $multiple_rows_suffix ); |
|
83 | + if ( $field->field->gsurveyLikertEnableScoring ) { |
|
84 | + $likert_display_options[ 'score' ] = __( 'Score value of the selected choice', 'gravityview' ) . ( $show_suffix ? '' : $multiple_rows_suffix ); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | // Maintain for back-compatibility |
88 | - $add_options['score'] = array( |
|
88 | + $add_options[ 'score' ] = array( |
|
89 | 89 | 'type' => 'hidden', |
90 | 90 | 'value' => '', |
91 | 91 | 'group' => 'display', |
92 | 92 | ); |
93 | 93 | |
94 | - $add_options['choice_display'] = array( |
|
94 | + $add_options[ 'choice_display' ] = array( |
|
95 | 95 | 'type' => 'radio', |
96 | 96 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
97 | 97 | 'options' => $likert_display_options, |
@@ -103,8 +103,8 @@ discard block |
||
103 | 103 | ); |
104 | 104 | } |
105 | 105 | |
106 | - if( 'checkbox' === $field->field->inputType && $input_id ) { |
|
107 | - $field_options['choice_display'] = array( |
|
106 | + if ( 'checkbox' === $field->field->inputType && $input_id ) { |
|
107 | + $field_options[ 'choice_display' ] = array( |
|
108 | 108 | 'type' => 'radio', |
109 | 109 | 'class' => 'vertical', |
110 | 110 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | } |
121 | 121 | |
122 | 122 | if ( 'rating' === $field->field->inputType ) { |
123 | - $field_options['choice_display'] = array( |
|
123 | + $field_options[ 'choice_display' ] = array( |
|
124 | 124 | 'type' => 'radio', |
125 | 125 | 'class' => 'vertical', |
126 | 126 | 'label' => __( 'What should be displayed:', 'gravityview' ), |
@@ -114,14 +114,14 @@ |
||
114 | 114 | /** Require critical legacy core files. @todo Deprecate */ |
115 | 115 | require_once $this->plugin->dir( 'includes/import-functions.php' ); |
116 | 116 | require_once $this->plugin->dir( 'includes/helper-functions.php' ); |
117 | - require_once $this->plugin->dir( 'includes/class-common.php'); |
|
118 | - require_once $this->plugin->dir( 'includes/connector-functions.php'); |
|
117 | + require_once $this->plugin->dir( 'includes/class-common.php' ); |
|
118 | + require_once $this->plugin->dir( 'includes/connector-functions.php' ); |
|
119 | 119 | require_once $this->plugin->dir( 'includes/class-gravityview-compatibility.php' ); |
120 | 120 | require_once $this->plugin->dir( 'includes/class-gravityview-roles-capabilities.php' ); |
121 | 121 | require_once $this->plugin->dir( 'includes/class-gravityview-admin-notices.php' ); |
122 | 122 | require_once $this->plugin->dir( 'includes/class-admin.php' ); |
123 | - require_once $this->plugin->dir( 'includes/class-post-types.php'); |
|
124 | - require_once $this->plugin->dir( 'includes/class-cache.php'); |
|
123 | + require_once $this->plugin->dir( 'includes/class-post-types.php' ); |
|
124 | + require_once $this->plugin->dir( 'includes/class-cache.php' ); |
|
125 | 125 | |
126 | 126 | /** |
127 | 127 | * GravityView extensions and widgets. |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | */ |
47 | 47 | function gravityview_import_helper_fix_line_breaks( $postmeta = array(), $post_id = 0, $post = array() ) { |
48 | 48 | |
49 | - if ( empty( $post['postmeta'] ) ) { |
|
49 | + if ( empty( $post[ 'postmeta' ] ) ) { |
|
50 | 50 | return $postmeta; |
51 | 51 | } |
52 | 52 | |
53 | - if ( 'gravityview' !== $post['post_type'] ) { |
|
53 | + if ( 'gravityview' !== $post[ 'post_type' ] ) { |
|
54 | 54 | return $postmeta; |
55 | 55 | } |
56 | 56 | |
@@ -62,27 +62,27 @@ discard block |
||
62 | 62 | $performed_fix = false; |
63 | 63 | |
64 | 64 | foreach ( $postmeta as &$meta ) { |
65 | - $key = $meta['key']; |
|
65 | + $key = $meta[ 'key' ]; |
|
66 | 66 | |
67 | 67 | if ( ! in_array( $key, $keys_to_fix, true ) ) { |
68 | 68 | continue; |
69 | 69 | } |
70 | 70 | |
71 | - $is_valid_serialized_data = maybe_unserialize( $meta['value'] ); |
|
71 | + $is_valid_serialized_data = maybe_unserialize( $meta[ 'value' ] ); |
|
72 | 72 | |
73 | 73 | // The values are not corrupted serialized data. No need to fix. |
74 | 74 | if ( false !== $is_valid_serialized_data ) { |
75 | 75 | continue; |
76 | 76 | } |
77 | 77 | |
78 | - $meta['value'] = str_replace( "\n", "\n\n", $meta['value'] ); |
|
78 | + $meta[ 'value' ] = str_replace( "\n", "\n\n", $meta[ 'value' ] ); |
|
79 | 79 | |
80 | 80 | $performed_fix = true; |
81 | 81 | } |
82 | 82 | |
83 | 83 | // Leave a note that this modification has been done. We'll use it later. |
84 | 84 | if ( $performed_fix ) { |
85 | - $postmeta[] = array( |
|
85 | + $postmeta[ ] = array( |
|
86 | 86 | 'key' => '_gravityview_fixed_import_serialization', |
87 | 87 | 'value' => 1, |
88 | 88 | ); |
@@ -25,9 +25,9 @@ discard block |
||
25 | 25 | * |
26 | 26 | * @return void |
27 | 27 | */ |
28 | - public function emergency($message, array $context = array()) |
|
28 | + public function emergency( $message, array $context = array() ) |
|
29 | 29 | { |
30 | - $this->log(LogLevel::EMERGENCY, $message, $context); |
|
30 | + $this->log( LogLevel::EMERGENCY, $message, $context ); |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -41,9 +41,9 @@ discard block |
||
41 | 41 | * |
42 | 42 | * @return void |
43 | 43 | */ |
44 | - public function alert($message, array $context = array()) |
|
44 | + public function alert( $message, array $context = array() ) |
|
45 | 45 | { |
46 | - $this->log(LogLevel::ALERT, $message, $context); |
|
46 | + $this->log( LogLevel::ALERT, $message, $context ); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -56,9 +56,9 @@ discard block |
||
56 | 56 | * |
57 | 57 | * @return void |
58 | 58 | */ |
59 | - public function critical($message, array $context = array()) |
|
59 | + public function critical( $message, array $context = array() ) |
|
60 | 60 | { |
61 | - $this->log(LogLevel::CRITICAL, $message, $context); |
|
61 | + $this->log( LogLevel::CRITICAL, $message, $context ); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | * |
71 | 71 | * @return void |
72 | 72 | */ |
73 | - public function error($message, array $context = array()) |
|
73 | + public function error( $message, array $context = array() ) |
|
74 | 74 | { |
75 | - $this->log(LogLevel::ERROR, $message, $context); |
|
75 | + $this->log( LogLevel::ERROR, $message, $context ); |
|
76 | 76 | } |
77 | 77 | |
78 | 78 | /** |
@@ -86,9 +86,9 @@ discard block |
||
86 | 86 | * |
87 | 87 | * @return void |
88 | 88 | */ |
89 | - public function warning($message, array $context = array()) |
|
89 | + public function warning( $message, array $context = array() ) |
|
90 | 90 | { |
91 | - $this->log(LogLevel::WARNING, $message, $context); |
|
91 | + $this->log( LogLevel::WARNING, $message, $context ); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | * |
100 | 100 | * @return void |
101 | 101 | */ |
102 | - public function notice($message, array $context = array()) |
|
102 | + public function notice( $message, array $context = array() ) |
|
103 | 103 | { |
104 | - $this->log(LogLevel::NOTICE, $message, $context); |
|
104 | + $this->log( LogLevel::NOTICE, $message, $context ); |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
@@ -114,9 +114,9 @@ discard block |
||
114 | 114 | * |
115 | 115 | * @return void |
116 | 116 | */ |
117 | - public function info($message, array $context = array()) |
|
117 | + public function info( $message, array $context = array() ) |
|
118 | 118 | { |
119 | - $this->log(LogLevel::INFO, $message, $context); |
|
119 | + $this->log( LogLevel::INFO, $message, $context ); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | * |
128 | 128 | * @return void |
129 | 129 | */ |
130 | - public function debug($message, array $context = array()) |
|
130 | + public function debug( $message, array $context = array() ) |
|
131 | 131 | { |
132 | - $this->log(LogLevel::DEBUG, $message, $context); |
|
132 | + $this->log( LogLevel::DEBUG, $message, $context ); |
|
133 | 133 | } |
134 | 134 | } |
@@ -25,7 +25,7 @@ |
||
25 | 25 | * |
26 | 26 | * @param LoggerInterface $logger |
27 | 27 | */ |
28 | - public function setLogger(LoggerInterface $logger) |
|
28 | + public function setLogger( LoggerInterface $logger ) |
|
29 | 29 | { |
30 | 30 | $this->logger = $logger; |
31 | 31 | } |
@@ -20,5 +20,5 @@ |
||
20 | 20 | * |
21 | 21 | * @return void |
22 | 22 | */ |
23 | - public function setLogger(LoggerInterface $logger); |
|
23 | + public function setLogger( LoggerInterface $logger ); |
|
24 | 24 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * |
30 | 30 | * @throws \GravityView\Psr\Log\InvalidArgumentException |
31 | 31 | */ |
32 | - public function log($level, $message, array $context = array()) |
|
32 | + public function log( $level, $message, array $context = array() ) |
|
33 | 33 | { |
34 | 34 | // noop |
35 | 35 | } |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return void |
28 | 28 | */ |
29 | - public function emergency($message, array $context = array()) |
|
29 | + public function emergency( $message, array $context = array() ) |
|
30 | 30 | { |
31 | - $this->log(LogLevel::EMERGENCY, $message, $context); |
|
31 | + $this->log( LogLevel::EMERGENCY, $message, $context ); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | * |
43 | 43 | * @return void |
44 | 44 | */ |
45 | - public function alert($message, array $context = array()) |
|
45 | + public function alert( $message, array $context = array() ) |
|
46 | 46 | { |
47 | - $this->log(LogLevel::ALERT, $message, $context); |
|
47 | + $this->log( LogLevel::ALERT, $message, $context ); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | /** |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | * |
58 | 58 | * @return void |
59 | 59 | */ |
60 | - public function critical($message, array $context = array()) |
|
60 | + public function critical( $message, array $context = array() ) |
|
61 | 61 | { |
62 | - $this->log(LogLevel::CRITICAL, $message, $context); |
|
62 | + $this->log( LogLevel::CRITICAL, $message, $context ); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return void |
73 | 73 | */ |
74 | - public function error($message, array $context = array()) |
|
74 | + public function error( $message, array $context = array() ) |
|
75 | 75 | { |
76 | - $this->log(LogLevel::ERROR, $message, $context); |
|
76 | + $this->log( LogLevel::ERROR, $message, $context ); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -87,9 +87,9 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @return void |
89 | 89 | */ |
90 | - public function warning($message, array $context = array()) |
|
90 | + public function warning( $message, array $context = array() ) |
|
91 | 91 | { |
92 | - $this->log(LogLevel::WARNING, $message, $context); |
|
92 | + $this->log( LogLevel::WARNING, $message, $context ); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | /** |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | * |
101 | 101 | * @return void |
102 | 102 | */ |
103 | - public function notice($message, array $context = array()) |
|
103 | + public function notice( $message, array $context = array() ) |
|
104 | 104 | { |
105 | - $this->log(LogLevel::NOTICE, $message, $context); |
|
105 | + $this->log( LogLevel::NOTICE, $message, $context ); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | /** |
@@ -115,9 +115,9 @@ discard block |
||
115 | 115 | * |
116 | 116 | * @return void |
117 | 117 | */ |
118 | - public function info($message, array $context = array()) |
|
118 | + public function info( $message, array $context = array() ) |
|
119 | 119 | { |
120 | - $this->log(LogLevel::INFO, $message, $context); |
|
120 | + $this->log( LogLevel::INFO, $message, $context ); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | /** |
@@ -128,9 +128,9 @@ discard block |
||
128 | 128 | * |
129 | 129 | * @return void |
130 | 130 | */ |
131 | - public function debug($message, array $context = array()) |
|
131 | + public function debug( $message, array $context = array() ) |
|
132 | 132 | { |
133 | - $this->log(LogLevel::DEBUG, $message, $context); |
|
133 | + $this->log( LogLevel::DEBUG, $message, $context ); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -144,5 +144,5 @@ discard block |
||
144 | 144 | * |
145 | 145 | * @throws \GravityView\Psr\Log\InvalidArgumentException |
146 | 146 | */ |
147 | - abstract public function log($level, $message, array $context = array()); |
|
147 | + abstract public function log( $level, $message, array $context = array() ); |
|
148 | 148 | } |