@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | { |
67 | 67 | $instance = new static; |
68 | 68 | $instance->setTagFromMethod( $method ); |
69 | - call_user_func_array( [$instance, 'normalize'], $args += ['',''] ); |
|
69 | + call_user_func_array( [$instance, 'normalize'], $args += ['', ''] ); |
|
70 | 70 | $tags = array_merge( static::TAGS_FORM, static::TAGS_SINGLE, static::TAGS_STRUCTURE, static::TAGS_TEXT ); |
71 | 71 | do_action_ref_array( 'site-reviews/builder', [&$instance] ); |
72 | 72 | $generatedTag = in_array( $instance->tag, $tags ) |
@@ -91,8 +91,8 @@ discard block |
||
91 | 91 | 'render' => 'is_bool', |
92 | 92 | 'tag' => 'is_string', |
93 | 93 | ]; |
94 | - if( !isset( $properties[$property] ) |
|
95 | - || empty( array_filter( [$value], $properties[$property] )) |
|
94 | + if( !isset($properties[$property]) |
|
95 | + || empty(array_filter( [$value], $properties[$property] )) |
|
96 | 96 | )return; |
97 | 97 | $this->$property = $value; |
98 | 98 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | */ |
103 | 103 | public function getClosingTag() |
104 | 104 | { |
105 | - if( empty( $this->tag ))return; |
|
105 | + if( empty($this->tag) )return; |
|
106 | 106 | return '</'.$this->tag.'>'; |
107 | 107 | } |
108 | 108 | |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | */ |
112 | 112 | public function getOpeningTag() |
113 | 113 | { |
114 | - if( empty( $this->tag ))return; |
|
115 | - $attributes = glsr( Attributes::class )->{$this->tag}( $this->args )->toString(); |
|
114 | + if( empty($this->tag) )return; |
|
115 | + $attributes = glsr( Attributes::class )->{$this->tag}($this->args)->toString(); |
|
116 | 116 | return '<'.trim( $this->tag.' '.$attributes ).'>'; |
117 | 117 | } |
118 | 118 | |
@@ -121,10 +121,10 @@ discard block |
||
121 | 121 | */ |
122 | 122 | public function getTag() |
123 | 123 | { |
124 | - if( in_array( $this->tag, static::TAGS_SINGLE )) { |
|
124 | + if( in_array( $this->tag, static::TAGS_SINGLE ) ) { |
|
125 | 125 | return $this->getOpeningTag(); |
126 | 126 | } |
127 | - if( !in_array( $this->tag, static::TAGS_FORM )) { |
|
127 | + if( !in_array( $this->tag, static::TAGS_FORM ) ) { |
|
128 | 128 | return $this->buildDefaultTag(); |
129 | 129 | } |
130 | 130 | return call_user_func( [$this, 'buildForm'.ucfirst( $this->tag )] ).$this->buildFieldDescription(); |
@@ -135,8 +135,8 @@ discard block |
||
135 | 135 | */ |
136 | 136 | public function raw( array $field ) |
137 | 137 | { |
138 | - unset( $field['label'] ); |
|
139 | - return $this->{$field['type']}( $field ); |
|
138 | + unset($field['label']); |
|
139 | + return $this->{$field['type']}($field); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | protected function buildCustomField() |
146 | 146 | { |
147 | 147 | $className = $this->getCustomFieldClassName(); |
148 | - if( class_exists( $className )) { |
|
148 | + if( class_exists( $className ) ) { |
|
149 | 149 | return (new $className( $this ))->build(); |
150 | 150 | } |
151 | 151 | glsr_log()->error( 'Field missing: '.$className ); |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | */ |
157 | 157 | protected function buildDefaultTag( $text = '' ) |
158 | 158 | { |
159 | - if( empty( $text )) { |
|
159 | + if( empty($text) ) { |
|
160 | 160 | $text = $this->args['text']; |
161 | 161 | } |
162 | 162 | return $this->getOpeningTag().$text.$this->getClosingTag(); |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | */ |
168 | 168 | protected function buildFieldDescription() |
169 | 169 | { |
170 | - if( empty( $this->args['description'] ))return; |
|
170 | + if( empty($this->args['description']) )return; |
|
171 | 171 | if( $this->args['is_widget'] ) { |
172 | 172 | return $this->small( $this->args['description'] ); |
173 | 173 | } |
@@ -179,13 +179,13 @@ discard block |
||
179 | 179 | */ |
180 | 180 | protected function buildFormInput() |
181 | 181 | { |
182 | - if( !in_array( $this->args['type'], ['checkbox', 'radio'] )) { |
|
183 | - if( isset( $this->args['multiple'] )) { |
|
184 | - $this->args['name'].= '[]'; |
|
182 | + if( !in_array( $this->args['type'], ['checkbox', 'radio'] ) ) { |
|
183 | + if( isset($this->args['multiple']) ) { |
|
184 | + $this->args['name'] .= '[]'; |
|
185 | 185 | } |
186 | 186 | return $this->buildFormLabel().$this->getOpeningTag(); |
187 | 187 | } |
188 | - return empty( $this->args['options'] ) |
|
188 | + return empty($this->args['options']) |
|
189 | 189 | ? $this->buildFormInputChoice() |
190 | 190 | : $this->buildFormInputMultiChoice(); |
191 | 191 | } |
@@ -195,19 +195,19 @@ discard block |
||
195 | 195 | */ |
196 | 196 | protected function buildFormInputChoice() |
197 | 197 | { |
198 | - if( !empty( $this->args['text'] )) { |
|
198 | + if( !empty($this->args['text']) ) { |
|
199 | 199 | $this->args['label'] = $this->args['text']; |
200 | 200 | } |
201 | 201 | if( !$this->args['is_public'] ) { |
202 | - return $this->buildFormLabel([ |
|
202 | + return $this->buildFormLabel( [ |
|
203 | 203 | 'class' => 'glsr-'.$this->args['type'].'-label', |
204 | 204 | 'text' => $this->getOpeningTag().' '.$this->args['label'].'<span></span>', |
205 | - ]); |
|
205 | + ] ); |
|
206 | 206 | } |
207 | - return $this->getOpeningTag().$this->buildFormLabel([ |
|
207 | + return $this->getOpeningTag().$this->buildFormLabel( [ |
|
208 | 208 | 'class' => 'glsr-'.$this->args['type'].'-label', |
209 | 209 | 'text' => $this->args['label'].'<span></span>', |
210 | - ]); |
|
210 | + ] ); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | /** |
@@ -216,22 +216,22 @@ discard block |
||
216 | 216 | protected function buildFormInputMultiChoice() |
217 | 217 | { |
218 | 218 | if( $this->args['type'] == 'checkbox' ) { |
219 | - $this->args['name'].= '[]'; |
|
219 | + $this->args['name'] .= '[]'; |
|
220 | 220 | } |
221 | 221 | $index = 0; |
222 | - $options = array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) use( &$index ) { |
|
222 | + $options = array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) use(&$index) { |
|
223 | 223 | return $carry.$this->li( $this->{$this->args['type']}([ |
224 | 224 | 'checked' => in_array( $key, (array)$this->args['value'] ), |
225 | 225 | 'id' => $this->args['id'].'-'.$index++, |
226 | 226 | 'name' => $this->args['name'], |
227 | 227 | 'text' => $this->args['options'][$key], |
228 | 228 | 'value' => $key, |
229 | - ])); |
|
229 | + ]) ); |
|
230 | 230 | }); |
231 | 231 | return $this->ul( $options, [ |
232 | 232 | 'class' => $this->args['class'], |
233 | 233 | 'id' => $this->args['id'], |
234 | - ]); |
|
234 | + ] ); |
|
235 | 235 | } |
236 | 236 | |
237 | 237 | /** |
@@ -239,13 +239,13 @@ discard block |
||
239 | 239 | */ |
240 | 240 | protected function buildFormLabel( array $customArgs = [] ) |
241 | 241 | { |
242 | - if( empty( $this->args['label'] ) || $this->args['type'] == 'hidden' )return; |
|
242 | + if( empty($this->args['label']) || $this->args['type'] == 'hidden' )return; |
|
243 | 243 | return $this->label( wp_parse_args( $customArgs, [ |
244 | 244 | 'for' => $this->args['id'], |
245 | 245 | 'is_public' => $this->args['is_public'], |
246 | 246 | 'text' => $this->args['label'], |
247 | 247 | 'type' => $this->args['type'], |
248 | - ])); |
|
248 | + ] ) ); |
|
249 | 249 | } |
250 | 250 | |
251 | 251 | /** |
@@ -262,11 +262,11 @@ discard block |
||
262 | 262 | protected function buildFormSelectOptions() |
263 | 263 | { |
264 | 264 | return array_reduce( array_keys( $this->args['options'] ), function( $carry, $key ) { |
265 | - return $carry.$this->option([ |
|
265 | + return $carry.$this->option( [ |
|
266 | 266 | 'selected' => $this->args['value'] == $key, |
267 | 267 | 'text' => $this->args['options'][$key], |
268 | 268 | 'value' => $key, |
269 | - ]); |
|
269 | + ] ); |
|
270 | 270 | }); |
271 | 271 | } |
272 | 272 | |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | protected function mergeArgsWithRequiredDefaults() |
303 | 303 | { |
304 | 304 | $className = $this->getCustomFieldClassName(); |
305 | - if( class_exists( $className )) { |
|
305 | + if( class_exists( $className ) ) { |
|
306 | 306 | $this->args = array_merge( |
307 | 307 | wp_parse_args( $this->args, $className::defaults() ), |
308 | 308 | $className::required() |
@@ -317,16 +317,16 @@ discard block |
||
317 | 317 | */ |
318 | 318 | protected function normalize( ...$params ) |
319 | 319 | { |
320 | - if( is_string( $params[0] ) || is_numeric( $params[0] )) { |
|
320 | + if( is_string( $params[0] ) || is_numeric( $params[0] ) ) { |
|
321 | 321 | $this->setNameOrTextAttributeForTag( $params[0] ); |
322 | 322 | } |
323 | - if( is_array( $params[0] )) { |
|
323 | + if( is_array( $params[0] ) ) { |
|
324 | 324 | $this->args += $params[0]; |
325 | 325 | } |
326 | - else if( is_array( $params[1] )) { |
|
326 | + else if( is_array( $params[1] ) ) { |
|
327 | 327 | $this->args += $params[1]; |
328 | 328 | } |
329 | - if( !isset( $this->args['is_public'] )) { |
|
329 | + if( !isset($this->args['is_public']) ) { |
|
330 | 330 | $this->args['is_public'] = false; |
331 | 331 | } |
332 | 332 | } |
@@ -350,7 +350,7 @@ discard block |
||
350 | 350 | protected function setTagFromMethod( $method ) |
351 | 351 | { |
352 | 352 | $this->tag = strtolower( $method ); |
353 | - if( in_array( $this->tag, static::INPUT_TYPES )) { |
|
353 | + if( in_array( $this->tag, static::INPUT_TYPES ) ) { |
|
354 | 354 | $this->args['type'] = $this->tag; |
355 | 355 | $this->tag = 'input'; |
356 | 356 | } |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | 'after_widget' => '</div>', |
24 | 24 | 'before_title' => '<h3 class="glsr-'.$type.'-title">', |
25 | 25 | 'after_title' => '</h3>', |
26 | - ]); |
|
26 | + ] ); |
|
27 | 27 | $args = apply_filters( 'site-reviews/shortcode/args', $args, $type, $shortcodePartial ); |
28 | 28 | $instance = $this->normalize( $instance ); |
29 | 29 | $partial = glsr( Partial::class )->build( $shortcodePartial, $instance ); |
30 | - if( !empty( $instance['title'] )) { |
|
30 | + if( !empty($instance['title']) ) { |
|
31 | 31 | $instance['title'] = $args['before_title'].$instance['title'].$args['after_title']; |
32 | 32 | } |
33 | 33 | return $args['before_widget'].$instance['title'].$partial.$args['after_widget']; |
@@ -82,10 +82,10 @@ discard block |
||
82 | 82 | */ |
83 | 83 | public function normalize( $args ) |
84 | 84 | { |
85 | - $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args )); |
|
85 | + $args = shortcode_atts( $this->getDefaults(), wp_parse_args( $args ) ); |
|
86 | 86 | array_walk( $args, function( &$value, $key ) { |
87 | 87 | $methodName = glsr( Helper::class )->buildMethodName( $key, 'normalize' ); |
88 | - if( !method_exists( $this, $methodName ))return; |
|
88 | + if( !method_exists( $this, $methodName ) )return; |
|
89 | 89 | $value = $this->$methodName( $value ); |
90 | 90 | }); |
91 | 91 | return $this->sanitize( $args ); |
@@ -117,11 +117,11 @@ discard block |
||
117 | 117 | */ |
118 | 118 | protected function normalizeHide( $hide ) |
119 | 119 | { |
120 | - if( is_string( $hide )) { |
|
120 | + if( is_string( $hide ) ) { |
|
121 | 121 | $hide = explode( ',', $hide ); |
122 | 122 | } |
123 | 123 | $hiddenKeys = $this->getHiddenKeys(); |
124 | - return array_filter( array_map( 'trim', $hide ), function( $value ) use( $hiddenKeys ) { |
|
124 | + return array_filter( array_map( 'trim', $hide ), function( $value ) use($hiddenKeys) { |
|
125 | 125 | return in_array( $value, $hiddenKeys ); |
126 | 126 | }); |
127 | 127 | } |
@@ -149,9 +149,9 @@ discard block |
||
149 | 149 | __( 'Terrible', 'site-reviews' ), |
150 | 150 | ]; |
151 | 151 | $defaults = array_pad( $defaults, Rating::MAX_RATING, '' ); |
152 | - $labels = array_map( 'trim', explode( ',', $labels )); |
|
152 | + $labels = array_map( 'trim', explode( ',', $labels ) ); |
|
153 | 153 | foreach( $defaults as $i => $label ) { |
154 | - if( empty( $labels[$i] ))continue; |
|
154 | + if( empty($labels[$i]) )continue; |
|
155 | 155 | $defaults[$i] = $labels[$i]; |
156 | 156 | } |
157 | 157 | return array_combine( range( Rating::MAX_RATING, 1 ), $defaults ); |
@@ -41,32 +41,32 @@ |
||
41 | 41 | */ |
42 | 42 | public function run() |
43 | 43 | { |
44 | - add_filter( 'mce_external_plugins', [$this->admin, 'filterTinymcePlugins'], 15 ); |
|
45 | - add_filter( 'plugin_action_links_'.$this->basename, [$this->admin, 'filterActionLinks'] ); |
|
46 | - add_filter( 'dashboard_glance_items', [$this->admin, 'filterDashboardGlanceItems'] ); |
|
47 | - add_filter( 'block_categories', [$this->blocks, 'filterBlockCategories'] ); |
|
48 | - add_filter( 'classic_editor_enabled_editors_for_post_type', [$this->blocks, 'filterEnabledEditors'], 10, 2 ); |
|
49 | - add_filter( 'use_block_editor_for_post_type', [$this->blocks, 'filterUseBlockEditor'], 10, 2 ); |
|
50 | - add_filter( 'wp_editor_settings', [$this->editor, 'filterEditorSettings'] ); |
|
51 | - add_filter( 'the_editor', [$this->editor, 'filterEditorTextarea'] ); |
|
52 | - add_filter( 'gettext', [$this->editor, 'filterPostStatusLabels'], 10, 3 ); |
|
53 | - add_filter( 'gettext_with_context', [$this->editor, 'filterPostStatusLabelsWithContext'], 10, 4 ); |
|
54 | - add_filter( 'post_updated_messages', [$this->editor, 'filterUpdateMessages'] ); |
|
55 | - add_filter( 'bulk_post_updated_messages', [$this->listtable, 'filterBulkUpdateMessages'], 10, 2 ); |
|
56 | - add_filter( 'manage_'.Application::POST_TYPE.'_posts_columns', [$this->listtable, 'filterColumnsForPostType'] ); |
|
57 | - add_filter( 'post_date_column_status', [$this->listtable, 'filterDateColumnStatus'], 10, 2 ); |
|
58 | - add_filter( 'default_hidden_columns', [$this->listtable, 'filterDefaultHiddenColumns'], 10, 2 ); |
|
59 | - add_filter( 'display_post_states', [$this->listtable, 'filterPostStates'], 10, 2 ); |
|
60 | - add_filter( 'post_row_actions', [$this->listtable, 'filterRowActions'], 10, 2 ); |
|
44 | + add_filter( 'mce_external_plugins', [$this->admin, 'filterTinymcePlugins'], 15 ); |
|
45 | + add_filter( 'plugin_action_links_'.$this->basename, [$this->admin, 'filterActionLinks'] ); |
|
46 | + add_filter( 'dashboard_glance_items', [$this->admin, 'filterDashboardGlanceItems'] ); |
|
47 | + add_filter( 'block_categories', [$this->blocks, 'filterBlockCategories'] ); |
|
48 | + add_filter( 'classic_editor_enabled_editors_for_post_type', [$this->blocks, 'filterEnabledEditors'], 10, 2 ); |
|
49 | + add_filter( 'use_block_editor_for_post_type', [$this->blocks, 'filterUseBlockEditor'], 10, 2 ); |
|
50 | + add_filter( 'wp_editor_settings', [$this->editor, 'filterEditorSettings'] ); |
|
51 | + add_filter( 'the_editor', [$this->editor, 'filterEditorTextarea'] ); |
|
52 | + add_filter( 'gettext', [$this->editor, 'filterPostStatusLabels'], 10, 3 ); |
|
53 | + add_filter( 'gettext_with_context', [$this->editor, 'filterPostStatusLabelsWithContext'], 10, 4 ); |
|
54 | + add_filter( 'post_updated_messages', [$this->editor, 'filterUpdateMessages'] ); |
|
55 | + add_filter( 'bulk_post_updated_messages', [$this->listtable, 'filterBulkUpdateMessages'], 10, 2 ); |
|
56 | + add_filter( 'manage_'.Application::POST_TYPE.'_posts_columns', [$this->listtable, 'filterColumnsForPostType'] ); |
|
57 | + add_filter( 'post_date_column_status', [$this->listtable, 'filterDateColumnStatus'], 10, 2 ); |
|
58 | + add_filter( 'default_hidden_columns', [$this->listtable, 'filterDefaultHiddenColumns'], 10, 2 ); |
|
59 | + add_filter( 'display_post_states', [$this->listtable, 'filterPostStates'], 10, 2 ); |
|
60 | + add_filter( 'post_row_actions', [$this->listtable, 'filterRowActions'], 10, 2 ); |
|
61 | 61 | add_filter( 'manage_edit-'.Application::POST_TYPE.'_sortable_columns', [$this->listtable, 'filterSortableColumns'] ); |
62 | - add_filter( 'ngettext', [$this->listtable, 'filterStatusText'], 10, 5 ); |
|
63 | - add_filter( 'script_loader_tag', [$this->public, 'filterEnqueuedScripts'], 10, 2 ); |
|
64 | - add_filter( 'site-reviews/config/forms/submission-form', [$this->public, 'filterFieldOrder'], 11 ); |
|
65 | - add_filter( 'query_vars', [$this->public, 'filterQueryVars'] ); |
|
66 | - add_filter( 'site-reviews/render/view', [$this->public, 'filterRenderView'] ); |
|
67 | - add_filter( 'gettext', [$this->translator, 'filterGettext'], 10, 3 ); |
|
68 | - add_filter( 'gettext_with_context', [$this->translator, 'filterGettextWithContext'], 10, 4 ); |
|
69 | - add_filter( 'ngettext', [$this->translator, 'filterNgettext'], 10, 5 ); |
|
70 | - add_filter( 'ngettext_with_context', [$this->translator, 'filterNgettextWithContext'], 10, 6 ); |
|
62 | + add_filter( 'ngettext', [$this->listtable, 'filterStatusText'], 10, 5 ); |
|
63 | + add_filter( 'script_loader_tag', [$this->public, 'filterEnqueuedScripts'], 10, 2 ); |
|
64 | + add_filter( 'site-reviews/config/forms/submission-form', [$this->public, 'filterFieldOrder'], 11 ); |
|
65 | + add_filter( 'query_vars', [$this->public, 'filterQueryVars'] ); |
|
66 | + add_filter( 'site-reviews/render/view', [$this->public, 'filterRenderView'] ); |
|
67 | + add_filter( 'gettext', [$this->translator, 'filterGettext'], 10, 3 ); |
|
68 | + add_filter( 'gettext_with_context', [$this->translator, 'filterGettextWithContext'], 10, 4 ); |
|
69 | + add_filter( 'ngettext', [$this->translator, 'filterNgettext'], 10, 5 ); |
|
70 | + add_filter( 'ngettext_with_context', [$this->translator, 'filterNgettextWithContext'], 10, 6 ); |
|
71 | 71 | } |
72 | 72 | } |
@@ -73,8 +73,8 @@ |
||
73 | 73 | add_filter( 'site-reviews/rendered/field', function( $html, $type, $args ) { |
74 | 74 | if( $args['path'] == 'rating' ) { |
75 | 75 | $stars = '<span class="glsr-stars">'; |
76 | - $stars.= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
77 | - $stars.= '</span>'; |
|
76 | + $stars .= str_repeat( '<span class="glsr-star glsr-star-empty" aria-hidden="true"></span>', 5 ); |
|
77 | + $stars .= '</span>'; |
|
78 | 78 | $html = preg_replace( '/(.*)(<select.*)(<\/select>)(.*)/', '$1'.$stars.'$4', $html ); |
79 | 79 | } |
80 | 80 | return $html; |
@@ -19,14 +19,14 @@ |
||
19 | 19 | */ |
20 | 20 | public function register( $block ) |
21 | 21 | { |
22 | - if( !function_exists( 'register_block_type' ))return; |
|
22 | + if( !function_exists( 'register_block_type' ) )return; |
|
23 | 23 | register_block_type( Application::ID.'/'.$block, [ |
24 | 24 | 'attributes' => $this->attributes(), |
25 | 25 | 'editor_script' => Application::ID.'/blocks', |
26 | 26 | 'editor_style' => Application::ID.'/blocks', |
27 | 27 | 'render_callback' => [$this, 'render'], |
28 | 28 | 'style' => Application::ID, |
29 | - ]); |
|
29 | + ] ); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -79,8 +79,8 @@ |
||
79 | 79 | foreach( $blocks as $block ) { |
80 | 80 | $id = str_replace( '_reviews', '', Application::ID.'_'.$block ); |
81 | 81 | $blockClass = glsr( Helper::class )->buildClassName( $id.'-block', 'Blocks' ); |
82 | - if( !class_exists( $blockClass )) { |
|
83 | - glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass )); |
|
82 | + if( !class_exists( $blockClass ) ) { |
|
83 | + glsr_log()->error( sprintf( 'Class missing (%s)', $blockClass ) ); |
|
84 | 84 | continue; |
85 | 85 | } |
86 | 86 | glsr( $blockClass )->register( $block ); |
@@ -129,13 +129,13 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function renderAssignedToMetabox( WP_Post $post ) |
131 | 131 | { |
132 | - if( !$this->isReviewPostType( $post ))return; |
|
132 | + if( !$this->isReviewPostType( $post ) )return; |
|
133 | 133 | $assignedTo = (string)get_post_meta( $post->ID, 'assigned_to', true ); |
134 | 134 | wp_nonce_field( 'assigned_to', '_nonce-assigned-to', false ); |
135 | 135 | glsr()->render( 'partials/editor/metabox-assigned-to', [ |
136 | 136 | 'id' => $assignedTo, |
137 | 137 | 'template' => $this->buildAssignedToTemplate( $assignedTo, $post ), |
138 | - ]); |
|
138 | + ] ); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | /** |
@@ -144,12 +144,12 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function renderDetailsMetaBox( WP_Post $post ) |
146 | 146 | { |
147 | - if( !$this->isReviewPostType( $post ))return; |
|
147 | + if( !$this->isReviewPostType( $post ) )return; |
|
148 | 148 | $review = glsr( ReviewManager::class )->single( $post ); |
149 | 149 | glsr()->render( 'partials/editor/metabox-details', [ |
150 | 150 | 'button' => $this->buildDetailsMetaBoxRevertButton( $review, $post ), |
151 | 151 | 'metabox' => $this->normalizeDetailsMetaBox( $review ), |
152 | - ]); |
|
152 | + ] ); |
|
153 | 153 | } |
154 | 154 | |
155 | 155 | /** |
@@ -158,14 +158,14 @@ discard block |
||
158 | 158 | */ |
159 | 159 | public function renderPinnedInPublishMetaBox() |
160 | 160 | { |
161 | - if( !$this->isReviewPostType( get_post() ))return; |
|
161 | + if( !$this->isReviewPostType( get_post() ) )return; |
|
162 | 162 | glsr( Template::class )->render( 'partials/editor/pinned', [ |
163 | 163 | 'context' => [ |
164 | 164 | 'no' => __( 'No', 'site-reviews' ), |
165 | 165 | 'yes' => __( 'Yes', 'site-reviews' ), |
166 | 166 | ], |
167 | - 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true )), |
|
168 | - ]); |
|
167 | + 'pinned' => wp_validate_boolean( get_post_meta( intval( get_the_ID() ), 'pinned', true ) ), |
|
168 | + ] ); |
|
169 | 169 | } |
170 | 170 | |
171 | 171 | /** |
@@ -174,11 +174,11 @@ discard block |
||
174 | 174 | */ |
175 | 175 | public function renderResponseMetaBox( WP_Post $post ) |
176 | 176 | { |
177 | - if( !$this->isReviewPostType( $post ))return; |
|
177 | + if( !$this->isReviewPostType( $post ) )return; |
|
178 | 178 | wp_nonce_field( 'response', '_nonce-response', false ); |
179 | 179 | glsr()->render( 'partials/editor/metabox-response', [ |
180 | 180 | 'response' => get_post_meta( $post->ID, 'response', true ), |
181 | - ]); |
|
181 | + ] ); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -187,11 +187,11 @@ discard block |
||
187 | 187 | */ |
188 | 188 | public function renderReviewEditor( WP_Post $post ) |
189 | 189 | { |
190 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
190 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
191 | 191 | glsr()->render( 'partials/editor/review', [ |
192 | 192 | 'post' => $post, |
193 | 193 | 'response' => get_post_meta( $post->ID, 'response', true ), |
194 | - ]); |
|
194 | + ] ); |
|
195 | 195 | } |
196 | 196 | |
197 | 197 | /** |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | $screen = glsr_current_screen(); |
204 | 204 | if( $screen->base != 'post' || $screen->post_type != Application::POST_TYPE )return; |
205 | 205 | add_action( 'edit_form_after_title', [$this, 'renderReviewEditor'] ); |
206 | - add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
206 | + add_action( 'edit_form_top', [$this, 'renderReviewNotice'] ); |
|
207 | 207 | } |
208 | 208 | |
209 | 209 | /** |
@@ -212,16 +212,16 @@ discard block |
||
212 | 212 | */ |
213 | 213 | public function renderReviewNotice( WP_Post $post ) |
214 | 214 | { |
215 | - if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ))return; |
|
215 | + if( !$this->isReviewPostType( $post ) || $this->isReviewEditable( $post ) )return; |
|
216 | 216 | glsr( Notice::class )->addWarning( sprintf( |
217 | 217 | __( '%s reviews are read-only.', 'site-reviews' ), |
218 | 218 | glsr( Columns::class )->buildColumnReviewType( $post->ID ) |
219 | - )); |
|
219 | + ) ); |
|
220 | 220 | glsr( Template::class )->render( 'partials/editor/notice', [ |
221 | 221 | 'context' => [ |
222 | 222 | 'notices' => glsr( Notice::class )->get(), |
223 | 223 | ], |
224 | - ]); |
|
224 | + ] ); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -231,12 +231,12 @@ discard block |
||
231 | 231 | */ |
232 | 232 | public function renderTaxonomyMetabox( WP_Post $post ) |
233 | 233 | { |
234 | - if( !$this->isReviewPostType( $post ))return; |
|
234 | + if( !$this->isReviewPostType( $post ) )return; |
|
235 | 235 | glsr()->render( 'partials/editor/metabox-categories', [ |
236 | 236 | 'post' => $post, |
237 | 237 | 'tax_name' => Application::TAXONOMY, |
238 | 238 | 'taxonomy' => get_taxonomy( Application::TAXONOMY ), |
239 | - ]); |
|
239 | + ] ); |
|
240 | 240 | } |
241 | 241 | |
242 | 242 | /** |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | */ |
247 | 247 | public function revertReview() |
248 | 248 | { |
249 | - check_admin_referer( 'revert-review_'.( $postId = $this->getPostId() )); |
|
249 | + check_admin_referer( 'revert-review_'.($postId = $this->getPostId()) ); |
|
250 | 250 | glsr( ReviewManager::class )->revert( $postId ); |
251 | 251 | $this->redirect( $postId, 52 ); |
252 | 252 | } |
@@ -269,13 +269,13 @@ discard block |
||
269 | 269 | protected function buildAssignedToTemplate( $assignedTo, WP_Post $post ) |
270 | 270 | { |
271 | 271 | $assignedPost = glsr( Database::class )->getAssignedToPost( $post->ID, $assignedTo ); |
272 | - if( !( $assignedPost instanceof WP_Post ))return; |
|
272 | + if( !($assignedPost instanceof WP_Post) )return; |
|
273 | 273 | return glsr( Template::class )->build( 'partials/editor/assigned-post', [ |
274 | 274 | 'context' => [ |
275 | 275 | 'data.url' => (string)get_permalink( $assignedPost ), |
276 | 276 | 'data.title' => get_the_title( $assignedPost ), |
277 | 277 | ], |
278 | - ]); |
|
278 | + ] ); |
|
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
@@ -299,13 +299,13 @@ discard block |
||
299 | 299 | 'class' => 'button button-large', |
300 | 300 | 'href' => $revertUrl, |
301 | 301 | 'id' => 'revert', |
302 | - ]); |
|
302 | + ] ); |
|
303 | 303 | } |
304 | 304 | return glsr( Builder::class )->button( __( 'Nothing to Revert', 'site-reviews' ), [ |
305 | 305 | 'class' => 'button button-large', |
306 | 306 | 'disabled' => true, |
307 | 307 | 'id' => 'revert', |
308 | - ]); |
|
308 | + ] ); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -318,11 +318,11 @@ discard block |
||
318 | 318 | $reviewType = array_key_exists( $review->review_type, glsr()->reviewTypes ) |
319 | 319 | ? glsr()->reviewTypes[$review->review_type] |
320 | 320 | : __( 'Unknown', 'site-reviews' ); |
321 | - if( !empty( $review->url )) { |
|
321 | + if( !empty($review->url) ) { |
|
322 | 322 | $reviewType = glsr( Builder::class )->a( $reviewType, [ |
323 | 323 | 'href' => $review->url, |
324 | 324 | 'target' => '_blank', |
325 | - ]); |
|
325 | + ] ); |
|
326 | 326 | } |
327 | 327 | return $reviewType; |
328 | 328 | } |
@@ -351,16 +351,16 @@ discard block |
||
351 | 351 | */ |
352 | 352 | protected function normalizeDetailsMetaBox( Review $review ) |
353 | 353 | { |
354 | - $user = empty( $review->user_id ) |
|
354 | + $user = empty($review->user_id) |
|
355 | 355 | ? __( 'Unregistered user', 'site-reviews' ) |
356 | 356 | : glsr( Builder::class )->a( get_the_author_meta( 'display_name', $review->user_id ), [ |
357 | 357 | 'href' => get_author_posts_url( $review->user_id ), |
358 | - ]); |
|
359 | - $email = empty( $review->email ) |
|
358 | + ] ); |
|
359 | + $email = empty($review->email) |
|
360 | 360 | ? '—' |
361 | 361 | : glsr( Builder::class )->a( $review->email, [ |
362 | 362 | 'href' => 'mailto:'.$review->email.'?subject='.esc_attr( __( 'RE:', 'site-reviews' ).' '.$review->title ), |
363 | - ]); |
|
363 | + ] ); |
|
364 | 364 | $metabox = [ |
365 | 365 | __( 'Rating', 'site-reviews' ) => glsr( Partial::class )->build( 'star-rating', ['rating' => $review->rating] ), |
366 | 366 | __( 'Type', 'site-reviews' ) => $this->getReviewType( $review ), |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | __( 'IP Address', 'site-reviews' ) => $review->ip_address, |
372 | 372 | __( 'Avatar', 'site-reviews' ) => sprintf( '<img src="%s" width="96">', $review->avatar ), |
373 | 373 | ]; |
374 | - return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review )); |
|
374 | + return array_filter( apply_filters( 'site-reviews/metabox/details', $metabox, $review ) ); |
|
375 | 375 | } |
376 | 376 | |
377 | 377 | /** |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | $redirectUri = $hasReferer |
389 | 389 | ? remove_query_arg( ['deleted', 'ids', 'trashed', 'untrashed'], $referer ) |
390 | 390 | : get_edit_post_link( $postId ); |
391 | - wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri )); |
|
391 | + wp_safe_redirect( add_query_arg( ['message' => $messageIndex], $redirectUri ) ); |
|
392 | 392 | exit; |
393 | 393 | } |
394 | 394 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | public function registerPostType() |
22 | 22 | { |
23 | 23 | if( !glsr()->hasPermission() )return; |
24 | - $command = new RegisterPostType([ |
|
24 | + $command = new RegisterPostType( [ |
|
25 | 25 | 'capabilities'=> ['create_posts' => 'create_'.Application::POST_TYPE], |
26 | 26 | 'columns' => [ |
27 | 27 | 'title' => '', |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | 'rest_controller_class' => RestReviewController::class, |
42 | 42 | 'show_in_rest' => true, |
43 | 43 | 'single' => __( 'Review', 'site-reviews' ), |
44 | - ]); |
|
44 | + ] ); |
|
45 | 45 | $this->execute( $command ); |
46 | 46 | } |
47 | 47 | |
@@ -51,11 +51,11 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public function registerShortcodes() |
53 | 53 | { |
54 | - $command = new RegisterShortcodes([ |
|
54 | + $command = new RegisterShortcodes( [ |
|
55 | 55 | 'site_reviews', |
56 | 56 | 'site_reviews_form', |
57 | 57 | 'site_reviews_summary', |
58 | - ]); |
|
58 | + ] ); |
|
59 | 59 | $this->execute( $command ); |
60 | 60 | } |
61 | 61 | |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public function registerTaxonomy() |
67 | 67 | { |
68 | - $command = new RegisterTaxonomy([ |
|
68 | + $command = new RegisterTaxonomy( [ |
|
69 | 69 | 'hierarchical' => true, |
70 | 70 | 'meta_box_cb' => [glsr( EditorController::class ), 'renderTaxonomyMetabox'], |
71 | 71 | 'public' => false, |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | 'show_admin_column' => true, |
74 | 74 | 'show_in_rest' => true, |
75 | 75 | 'show_ui' => true, |
76 | - ]); |
|
76 | + ] ); |
|
77 | 77 | $this->execute( $command ); |
78 | 78 | } |
79 | 79 | |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | public function registerWidgets() |
85 | 85 | { |
86 | - $command = new RegisterWidgets([ |
|
86 | + $command = new RegisterWidgets( [ |
|
87 | 87 | 'site-reviews' => [ |
88 | 88 | 'class' => 'glsr-widget glsr-widget-site-reviews', |
89 | 89 | 'description' => __( 'Your site’s most recent reviews.', 'site-reviews' ), |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | 'description' => __( 'A summary of your site’s reviews.', 'site-reviews' ), |
100 | 100 | 'title' => __( 'Summary of Reviews', 'site-reviews' ), |
101 | 101 | ], |
102 | - ]); |
|
102 | + ] ); |
|
103 | 103 | $this->execute( $command ); |
104 | 104 | } |
105 | 105 | } |
@@ -28,7 +28,7 @@ |
||
28 | 28 | register_rest_route( $this->namespace, '/types', [ |
29 | 29 | 'callback' => [$this, 'get_types'], |
30 | 30 | 'methods' => Server::READABLE, |
31 | - ]); |
|
31 | + ] ); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |