@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | return $this->translate( $translation, $domain, [ |
20 | 20 | 'single' => $text, |
21 | - ]); |
|
21 | + ] ); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | return $this->translate( $translation, $domain, [ |
34 | 34 | 'context' => $context, |
35 | 35 | 'single' => $text, |
36 | - ]); |
|
36 | + ] ); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | 'number' => $number, |
51 | 51 | 'plural' => $plural, |
52 | 52 | 'single' => $single, |
53 | - ]); |
|
53 | + ] ); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | 'number' => $number, |
70 | 70 | 'plural' => $plural, |
71 | 71 | 'single' => $single, |
72 | - ]); |
|
72 | + ] ); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | public function translate( $original, $domain, array $args ) |
81 | 81 | { |
82 | 82 | $domains = apply_filters( 'site-reviews/translator/domains', [Application::ID] ); |
83 | - if( !in_array( $domain, $domains )) { |
|
83 | + if( !in_array( $domain, $domains ) ) { |
|
84 | 84 | return $original; |
85 | 85 | } |
86 | 86 | $args = $this->normalizeTranslationArgs( $args ); |
87 | 87 | $strings = $this->getTranslationStrings( $args['single'], $args['plural'] ); |
88 | - if( empty( $strings )) { |
|
88 | + if( empty($strings) ) { |
|
89 | 89 | return $original; |
90 | 90 | } |
91 | 91 | $string = current( $strings ); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | */ |
102 | 102 | protected function getTranslationStrings( $single, $plural ) |
103 | 103 | { |
104 | - return array_filter( glsr( Translation::class )->translations(), function( $string ) use( $single, $plural ) { |
|
104 | + return array_filter( glsr( Translation::class )->translations(), function( $string ) use($single, $plural) { |
|
105 | 105 | return $string['s1'] == html_entity_decode( $single, ENT_COMPAT, 'UTF-8' ) |
106 | 106 | && $string['p1'] == html_entity_decode( $plural, ENT_COMPAT, 'UTF-8' ); |
107 | 107 | }); |
@@ -127,10 +127,10 @@ discard block |
||
127 | 127 | */ |
128 | 128 | protected function translatePlural( $domain, array $string, array $args ) |
129 | 129 | { |
130 | - if( !empty( $string['s2'] )) { |
|
130 | + if( !empty($string['s2']) ) { |
|
131 | 131 | $args['single'] = $string['s2']; |
132 | 132 | } |
133 | - if( !empty( $string['p2'] )) { |
|
133 | + if( !empty($string['p2']) ) { |
|
134 | 134 | $args['plural'] = $string['p2']; |
135 | 135 | } |
136 | 136 | return get_translations_for_domain( $domain )->translate_plural( |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | */ |
148 | 148 | protected function translateSingle( $domain, array $string, array $args ) |
149 | 149 | { |
150 | - if( !empty( $string['s2'] )) { |
|
150 | + if( !empty($string['s2']) ) { |
|
151 | 151 | $args['single'] = $string['s2']; |
152 | 152 | } |
153 | 153 | return get_translations_for_domain( $domain )->translate( |
@@ -21,7 +21,7 @@ |
||
21 | 21 | */ |
22 | 22 | public function build() |
23 | 23 | { |
24 | - glsr_log()->error( 'Build method is not implemented for '.get_class( $this )); |
|
24 | + glsr_log()->error( 'Build method is not implemented for '.get_class( $this ) ); |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | /** |
@@ -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 | } |
@@ -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 ); |
@@ -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 | /** |