@@ -12,7 +12,7 @@ |
||
12 | 12 | */ |
13 | 13 | public function build( array $args = [] ) |
14 | 14 | { |
15 | - require_once( ABSPATH.'wp-admin/includes/template.php' ); |
|
15 | + require_once(ABSPATH.'wp-admin/includes/template.php'); |
|
16 | 16 | ob_start(); |
17 | 17 | wp_star_rating( $args ); |
18 | 18 | $stars = ob_get_clean(); |
@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | public function routeAdminPostRequest() |
18 | 18 | { |
19 | 19 | $request = $this->getRequest(); |
20 | - if( !$this->isValidPostRequest( $request ))return; |
|
20 | + if( !$this->isValidPostRequest( $request ) )return; |
|
21 | 21 | check_admin_referer( $request['_action'] ); |
22 | 22 | $this->routeRequest( 'admin', $request['_action'], $request ); |
23 | 23 | } |
@@ -41,8 +41,8 @@ discard block |
||
41 | 41 | { |
42 | 42 | if( is_admin() )return; |
43 | 43 | $request = $this->getRequest(); |
44 | - if( !$this->isValidPostRequest( $request ))return; |
|
45 | - if( !$this->isValidPublicNonce( $request ))return; |
|
44 | + if( !$this->isValidPostRequest( $request ) )return; |
|
45 | + if( !$this->isValidPublicNonce( $request ) )return; |
|
46 | 46 | $this->routeRequest( 'public', $request['_action'], $request ); |
47 | 47 | } |
48 | 48 | |
@@ -52,10 +52,10 @@ discard block |
||
52 | 52 | protected function checkAjaxNonce( array $request ) |
53 | 53 | { |
54 | 54 | if( !is_user_logged_in() )return; |
55 | - if( !isset( $request['_nonce'] )) { |
|
55 | + if( !isset($request['_nonce']) ) { |
|
56 | 56 | $this->sendAjaxError( 'request is missing a nonce', $request ); |
57 | 57 | } |
58 | - if( !wp_verify_nonce( $request['_nonce'], $request['_action'] )) { |
|
58 | + if( !wp_verify_nonce( $request['_nonce'], $request['_action'] ) ) { |
|
59 | 59 | $this->sendAjaxError( 'request failed the nonce check', $request, 403 ); |
60 | 60 | } |
61 | 61 | } |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | */ |
66 | 66 | protected function checkAjaxRequest( array $request ) |
67 | 67 | { |
68 | - if( !isset( $request['_action'] )) { |
|
68 | + if( !isset($request['_action']) ) { |
|
69 | 69 | $this->sendAjaxError( 'request must include an action', $request ); |
70 | 70 | } |
71 | - if( empty( $request['_ajax_request'] )) { |
|
71 | + if( empty($request['_ajax_request']) ) { |
|
72 | 72 | $this->sendAjaxError( 'request is invalid', $request ); |
73 | 73 | } |
74 | 74 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | */ |
96 | 96 | protected function isValidPostRequest( array $request = [] ) |
97 | 97 | { |
98 | - return !empty( $request['_action'] ) && empty( $request['_ajax_request'] ); |
|
98 | + return !empty($request['_action']) && empty($request['_ajax_request']); |
|
99 | 99 | } |
100 | 100 | |
101 | 101 | /** |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | */ |
104 | 104 | protected function isValidPublicNonce( array $request ) |
105 | 105 | { |
106 | - if( is_user_logged_in() && !wp_verify_nonce( $request['_nonce'], $request['_action'] )) { |
|
106 | + if( is_user_logged_in() && !wp_verify_nonce( $request['_nonce'], $request['_action'] ) ) { |
|
107 | 107 | glsr_log()->error( 'nonce check failed for public request' )->debug( $request ); |
108 | 108 | return false; |
109 | 109 | } |
@@ -118,11 +118,11 @@ discard block |
||
118 | 118 | protected function routeRequest( $type, $action, array $request = [] ) |
119 | 119 | { |
120 | 120 | $actionHook = 'site-reviews/route/'.$type.'/request'; |
121 | - $controller = glsr( glsr( Helper::class )->buildClassName( $type.'-controller', 'Controllers' )); |
|
121 | + $controller = glsr( glsr( Helper::class )->buildClassName( $type.'-controller', 'Controllers' ) ); |
|
122 | 122 | $method = glsr( Helper::class )->buildMethodName( $action, 'router' ); |
123 | 123 | $request = apply_filters( 'site-reviews/route/request', $request, $action, $type ); |
124 | 124 | do_action( $actionHook, $action, $request ); |
125 | - if( is_callable( [$controller, $method] )) { |
|
125 | + if( is_callable( [$controller, $method] ) ) { |
|
126 | 126 | call_user_func( [$controller, $method], $request ); |
127 | 127 | return; |
128 | 128 | } |
@@ -140,10 +140,10 @@ discard block |
||
140 | 140 | { |
141 | 141 | glsr_log()->error( $error )->debug( $request ); |
142 | 142 | glsr( Notice::class )->addError( __( 'There was an error (try refreshing the page).', 'site-reviews' ).' <code>'.$error.'</code>' ); |
143 | - wp_send_json_error([ |
|
143 | + wp_send_json_error( [ |
|
144 | 144 | 'message' => __( 'The form could not be submitted. Please notify the site administrator.', 'site-reviews' ), |
145 | 145 | 'notices' => glsr( Notice::class )->get(), |
146 | 146 | 'error' => $error, |
147 | - ]); |
|
147 | + ] ); |
|
148 | 148 | } |
149 | 149 | } |
@@ -1,14 +1,14 @@ discard block |
||
1 | 1 | <?php defined( 'WPINC' ) || die; ?> |
2 | 2 | |
3 | 3 | <div id="titlediv"> |
4 | - <input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' )); ?>" readonly> |
|
4 | + <input type="text" id="title" value="<?= $post->post_title ? esc_attr( $post->post_title ) : sprintf( '(%s)', __( 'no title', 'site-reviews' ) ); ?>" readonly> |
|
5 | 5 | </div> |
6 | 6 | |
7 | 7 | <div id="contentdiv"> |
8 | 8 | <textarea readonly><?= esc_attr( $post->post_content ); ?></textarea> |
9 | 9 | </div> |
10 | 10 | |
11 | -<?php if( empty( $response ))return; ?> |
|
11 | +<?php if( empty($response) )return; ?> |
|
12 | 12 | |
13 | 13 | <div class="postbox glsr-response-postbox"> |
14 | 14 | <button type="button" class="handlediv" aria-expanded="true"> |
@@ -19,6 +19,6 @@ discard block |
||
19 | 19 | <span><?= __( 'Public Response', 'site-reviews' ); ?></span> |
20 | 20 | </h2> |
21 | 21 | <div class="inside"> |
22 | - <?= wpautop( esc_attr( $response )); ?> |
|
22 | + <?= wpautop( esc_attr( $response ) ); ?> |
|
23 | 23 | </div> |
24 | 24 | </div> |
@@ -13,14 +13,14 @@ discard block |
||
13 | 13 | public function getPost( $postId ) |
14 | 14 | { |
15 | 15 | $postId = trim( $postId ); |
16 | - if( empty( $postId ) || !is_numeric( $postId ))return; |
|
16 | + if( empty($postId) || !is_numeric( $postId ) )return; |
|
17 | 17 | if( $this->isEnabled() ) { |
18 | - $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() )); |
|
18 | + $polylangPostId = pll_get_post( $postId, pll_get_post_language( get_the_ID() ) ); |
|
19 | 19 | } |
20 | - if( !empty( $polylangPostId )) { |
|
20 | + if( !empty($polylangPostId) ) { |
|
21 | 21 | $postId = $polylangPostId; |
22 | 22 | } |
23 | - return get_post( intval( $postId )); |
|
23 | + return get_post( intval( $postId ) ); |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | foreach( $this->cleanIds( $postIds ) as $postId ) { |
36 | 36 | $newPostIds = array_merge( |
37 | 37 | $newPostIds, |
38 | - array_values( pll_get_post_translations( $postId )) |
|
38 | + array_values( pll_get_post_translations( $postId ) ) |
|
39 | 39 | ); |
40 | 40 | } |
41 | 41 | return $this->cleanIds( $newPostIds ); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | */ |
76 | 76 | protected function cleanIds( array $postIds ) |
77 | 77 | { |
78 | - return array_filter( array_unique( $postIds )); |
|
78 | + return array_filter( array_unique( $postIds ) ); |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | */ |
16 | 16 | public function download( $filename, $content ) |
17 | 17 | { |
18 | - if( !current_user_can( glsr()->constant( 'CAPABILITY' )))return; |
|
18 | + if( !current_user_can( glsr()->constant( 'CAPABILITY' ) ) )return; |
|
19 | 19 | nocache_headers(); |
20 | 20 | header( 'Content-Type: text/plain' ); |
21 | 21 | header( 'Content-Disposition: attachment; filename="'.$filename.'"' ); |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | */ |
31 | 31 | public function execute( $command ) |
32 | 32 | { |
33 | - $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command )); |
|
34 | - if( !class_exists( $handlerClass )) { |
|
33 | + $handlerClass = str_replace( 'Commands', 'Handlers', get_class( $command ) ); |
|
34 | + if( !class_exists( $handlerClass ) ) { |
|
35 | 35 | throw new InvalidArgumentException( 'Handler '.$handlerClass.' not found.' ); |
36 | 36 | } |
37 | 37 | try { |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | } |
40 | 40 | catch( Exception $e ) { |
41 | 41 | status_header( 400 ); |
42 | - glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() )); |
|
42 | + glsr( Notice::class )->addError( new WP_Error( 'site_reviews_error', $e->getMessage() ) ); |
|
43 | 43 | glsr_log()->error( $e->getMessage() ); |
44 | 44 | } |
45 | 45 | } |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | protected function getPostId() |
51 | 51 | { |
52 | - return intval( filter_input( INPUT_GET, 'post' )); |
|
52 | + return intval( filter_input( INPUT_GET, 'post' ) ); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | { |
18 | 18 | $queries = []; |
19 | 19 | foreach( $keys as $key ) { |
20 | - if( !array_key_exists( $key, $values ))continue; |
|
20 | + if( !array_key_exists( $key, $values ) )continue; |
|
21 | 21 | $methodName = glsr( Helper::class )->buildMethodName( $key, __FUNCTION__ ); |
22 | - if( !method_exists( $this, $methodName ))continue; |
|
22 | + if( !method_exists( $this, $methodName ) )continue; |
|
23 | 23 | $query = call_user_func( [$this, $methodName], $values[$key] ); |
24 | - if( is_array( $query )) { |
|
24 | + if( is_array( $query ) ) { |
|
25 | 25 | $queries[] = $query; |
26 | 26 | } |
27 | 27 | } |
@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | $string = ''; |
37 | 37 | $values = array_filter( $values ); |
38 | 38 | foreach( $conditions as $key => $value ) { |
39 | - if( !isset( $values[$key] ))continue; |
|
39 | + if( !isset($values[$key]) )continue; |
|
40 | 40 | $values[$key] = implode( ',', (array)$values[$key] ); |
41 | 41 | $string .= strpos( $value, '%s' ) !== false |
42 | - ? sprintf( $value, strval( $values[$key] )) |
|
42 | + ? sprintf( $value, strval( $values[$key] ) ) |
|
43 | 43 | : $value; |
44 | 44 | } |
45 | 45 | return $string; |
@@ -53,11 +53,11 @@ discard block |
||
53 | 53 | */ |
54 | 54 | public function buildSqlOr( $values, $sprintfFormat ) |
55 | 55 | { |
56 | - if( !is_array( $values )) { |
|
56 | + if( !is_array( $values ) ) { |
|
57 | 57 | $values = explode( ',', $values ); |
58 | 58 | } |
59 | - $values = array_filter( array_map( 'trim', (array)$values )); |
|
60 | - $values = array_map( function( $value ) use( $sprintfFormat ) { |
|
59 | + $values = array_filter( array_map( 'trim', (array)$values ) ); |
|
60 | + $values = array_map( function( $value ) use($sprintfFormat) { |
|
61 | 61 | return sprintf( $sprintfFormat, $value ); |
62 | 62 | }, $values ); |
63 | 63 | return implode( ' OR ', $values ); |
@@ -72,11 +72,11 @@ discard block |
||
72 | 72 | */ |
73 | 73 | public function filterSearchByTitle( $search, WP_Query $query ) |
74 | 74 | { |
75 | - if( empty( $search ) || empty( $query->get( 'search_terms' ))) { |
|
75 | + if( empty($search) || empty($query->get( 'search_terms' )) ) { |
|
76 | 76 | return $search; |
77 | 77 | } |
78 | 78 | global $wpdb; |
79 | - $n = empty( $query->get( 'exact' )) |
|
79 | + $n = empty($query->get( 'exact' )) |
|
80 | 80 | ? '%' |
81 | 81 | : ''; |
82 | 82 | $search = []; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | ? glsr()->constant( 'PAGED_QUERY_VAR' ) |
101 | 101 | : 'page'; |
102 | 102 | return $isEnabled |
103 | - ? max( 1, intval( get_query_var( $pagedQuery ))) |
|
103 | + ? max( 1, intval( get_query_var( $pagedQuery ) ) ) |
|
104 | 104 | : 1; |
105 | 105 | } |
106 | 106 | |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | */ |
111 | 111 | protected function buildQueryAssignedTo( $value ) |
112 | 112 | { |
113 | - if( empty( $value ))return; |
|
113 | + if( empty($value) )return; |
|
114 | 114 | $postIds = glsr( Helper::class )->convertStringToArray( $value, 'is_numeric' ); |
115 | 115 | return [ |
116 | 116 | 'compare' => 'IN', |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | */ |
126 | 126 | protected function buildQueryCategory( $value ) |
127 | 127 | { |
128 | - if( empty( $value ))return; |
|
128 | + if( empty($value) )return; |
|
129 | 129 | return [ |
130 | 130 | 'field' => 'term_id', |
131 | 131 | 'taxonomy' => Application::TAXONOMY, |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | */ |
140 | 140 | protected function buildQueryRating( $value ) |
141 | 141 | { |
142 | - if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 )))return; |
|
142 | + if( !is_numeric( $value ) || !in_array( intval( $value ), range( 1, 5 ) ) )return; |
|
143 | 143 | return [ |
144 | 144 | 'compare' => '>=', |
145 | 145 | 'key' => 'rating', |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | */ |
154 | 154 | protected function buildQueryType( $value ) |
155 | 155 | { |
156 | - if( in_array( $value, ['','all'] ))return; |
|
156 | + if( in_array( $value, ['', 'all'] ) )return; |
|
157 | 157 | return [ |
158 | 158 | 'key' => 'review_type', |
159 | 159 | 'value' => $value, |
@@ -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( |
@@ -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 | } |
@@ -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 ); |