@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | |
14 | 14 | const TAXONOMY_DEFAULTS = [ |
15 | 15 | 'hierarchical' => true, |
16 | - 'labels' => [], |
|
16 | + 'labels' => [ ], |
|
17 | 17 | 'menu_name' => '', |
18 | 18 | 'plural' => '', |
19 | - 'post_types' => [], |
|
19 | + 'post_types' => [ ], |
|
20 | 20 | 'public' => true, |
21 | 21 | 'rewrite' => true, |
22 | 22 | 'show_admin_column' => true, |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | /** |
28 | 28 | * @var array |
29 | 29 | */ |
30 | - public $taxonomies = []; |
|
30 | + public $taxonomies = [ ]; |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * {@inheritdoc} |
@@ -36,9 +36,9 @@ discard block |
||
36 | 36 | { |
37 | 37 | $this->normalize(); |
38 | 38 | |
39 | - add_filter( 'parse_query', [ $this, 'filterBy'] ); |
|
40 | - add_action( 'restrict_manage_posts', [ $this, 'printFilters'] ); |
|
41 | - add_action( 'init', [ $this, 'register'] ); |
|
39 | + add_filter( 'parse_query', [ $this, 'filterBy' ] ); |
|
40 | + add_action( 'restrict_manage_posts', [ $this, 'printFilters' ] ); |
|
41 | + add_action( 'init', [ $this, 'register' ] ); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | /** |
@@ -49,9 +49,9 @@ discard block |
||
49 | 49 | if( !is_admin() || $this->app->screen()->base != 'edit' )return; |
50 | 50 | $vars = &$query->query_vars; |
51 | 51 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
52 | - if( !isset( $vars[$taxonomy] ))return; |
|
53 | - if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
|
54 | - $vars[$taxonomy] = $term->slug; |
|
52 | + if( !isset( $vars[ $taxonomy ] ) )return; |
|
53 | + if( $term = get_term_by( 'id', $vars[ $taxonomy ], $taxonomy ) ) { |
|
54 | + $vars[ $taxonomy ] = $term->slug; |
|
55 | 55 | } |
56 | 56 | } |
57 | 57 | return $query; |
@@ -64,18 +64,18 @@ discard block |
||
64 | 64 | { |
65 | 65 | global $wp_query; |
66 | 66 | foreach( $this->taxonomies as $taxonomy => $args ) { |
67 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
68 | - $selected = isset( $wp_query->query[$taxonomy] ) |
|
69 | - ? $wp_query->query[$taxonomy] |
|
67 | + if( !in_array( get_current_screen()->post_type, $args[ 'post_types' ] ) )continue; |
|
68 | + $selected = isset( $wp_query->query[ $taxonomy ] ) |
|
69 | + ? $wp_query->query[ $taxonomy ] |
|
70 | 70 | : false; |
71 | - wp_dropdown_categories([ |
|
71 | + wp_dropdown_categories( [ |
|
72 | 72 | 'hide_if_empty' => true, |
73 | 73 | 'name' => $taxonomy, |
74 | 74 | 'orderby' => 'name', |
75 | 75 | 'selected' => $selected, |
76 | - 'show_option_all' => $args['labels']['all_items'], |
|
76 | + 'show_option_all' => $args[ 'labels' ][ 'all_items' ], |
|
77 | 77 | 'taxonomy' => $taxonomy, |
78 | - ]); |
|
78 | + ] ); |
|
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
@@ -85,8 +85,8 @@ discard block |
||
85 | 85 | public function register() |
86 | 86 | { |
87 | 87 | array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
88 | - register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
|
89 | - foreach( $args['post_types'] as $type ) { |
|
88 | + register_taxonomy( $taxonomy, $args[ 'post_types' ], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ) ) ); |
|
89 | + foreach( $args[ 'post_types' ] as $type ) { |
|
90 | 90 | register_taxonomy_for_object_type( $taxonomy, $type ); |
91 | 91 | } |
92 | 92 | }); |
@@ -97,14 +97,14 @@ discard block |
||
97 | 97 | */ |
98 | 98 | protected function normalize() |
99 | 99 | { |
100 | - foreach( $this->app->config['taxonomies'] as $taxonomy => $args ) { |
|
101 | - $this->taxonomies[$taxonomy] = apply_filters( 'pollux/taxonomy/args', |
|
100 | + foreach( $this->app->config[ 'taxonomies' ] as $taxonomy => $args ) { |
|
101 | + $this->taxonomies[ $taxonomy ] = apply_filters( 'pollux/taxonomy/args', |
|
102 | 102 | $this->normalizeThis( $args, static::TAXONOMY_DEFAULTS, $taxonomy ) |
103 | 103 | ); |
104 | 104 | } |
105 | 105 | $this->taxonomies = array_diff_key( |
106 | 106 | $this->taxonomies, |
107 | - get_taxonomies( ['_builtin' => true] ) |
|
107 | + get_taxonomies( [ '_builtin' => true ] ) |
|
108 | 108 | ); |
109 | 109 | } |
110 | 110 | |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | */ |
115 | 115 | protected function normalizeLabels( $labels, array $args ) |
116 | 116 | { |
117 | - return wp_parse_args( $labels, $this->setLabels( $args )); |
|
117 | + return wp_parse_args( $labels, $this->setLabels( $args ) ); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | /** |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | protected function normalizeMenuName( $menuname, array $args ) |
125 | 125 | { |
126 | 126 | return empty( $menuname ) |
127 | - ? $args['plural'] |
|
127 | + ? $args[ 'plural' ] |
|
128 | 128 | : $menuname; |
129 | 129 | } |
130 | 130 | |
@@ -143,17 +143,17 @@ discard block |
||
143 | 143 | protected function setLabels( array $args ) |
144 | 144 | { |
145 | 145 | return apply_filters( 'pollux/taxonomy/labels', [ |
146 | - 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args['single'] ), |
|
147 | - 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args['plural'] ), |
|
148 | - 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args['single'] ), |
|
149 | - 'menu_name' => $this->normalizeMenuName( $args['menu_name'], $args ), |
|
150 | - 'name' => $args['plural'], |
|
151 | - 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args['single'] ), |
|
152 | - 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args['plural'] ), |
|
153 | - 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args['plural'] ), |
|
154 | - 'singular_name' => $args['single'], |
|
155 | - 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args['single'] ), |
|
156 | - 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args['single'] ), |
|
146 | + 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
147 | + 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
148 | + 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
149 | + 'menu_name' => $this->normalizeMenuName( $args[ 'menu_name' ], $args ), |
|
150 | + 'name' => $args[ 'plural' ], |
|
151 | + 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args[ 'single' ] ), |
|
152 | + 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args[ 'plural' ] ), |
|
153 | + 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
154 | + 'singular_name' => $args[ 'single' ], |
|
155 | + 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
156 | + 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
157 | 157 | ], $args ); |
158 | 158 | } |
159 | 159 | } |
@@ -46,10 +46,14 @@ discard block |
||
46 | 46 | */ |
47 | 47 | public function filterBy( WP_Query $query ) |
48 | 48 | { |
49 | - if( !is_admin() || $this->app->screen()->base != 'edit' )return; |
|
49 | + if( !is_admin() || $this->app->screen()->base != 'edit' ) { |
|
50 | + return; |
|
51 | + } |
|
50 | 52 | $vars = &$query->query_vars; |
51 | 53 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
52 | - if( !isset( $vars[$taxonomy] ))return; |
|
54 | + if( !isset( $vars[$taxonomy] )) { |
|
55 | + return; |
|
56 | + } |
|
53 | 57 | if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
54 | 58 | $vars[$taxonomy] = $term->slug; |
55 | 59 | } |
@@ -64,7 +68,9 @@ discard block |
||
64 | 68 | { |
65 | 69 | global $wp_query; |
66 | 70 | foreach( $this->taxonomies as $taxonomy => $args ) { |
67 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
71 | + if( !in_array( get_current_screen()->post_type, $args['post_types'] )) { |
|
72 | + continue; |
|
73 | + } |
|
68 | 74 | $selected = isset( $wp_query->query[$taxonomy] ) |
69 | 75 | ? $wp_query->query[$taxonomy] |
70 | 76 | : false; |
@@ -84,7 +90,8 @@ discard block |
||
84 | 90 | */ |
85 | 91 | public function register() |
86 | 92 | { |
87 | - array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
|
93 | + array_walk( $this->taxonomies, function( $args, $taxonomy ) |
|
94 | + { |
|
88 | 95 | register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
89 | 96 | foreach( $args['post_types'] as $type ) { |
90 | 97 | register_taxonomy_for_object_type( $taxonomy, $type ); |
@@ -32,14 +32,14 @@ discard block |
||
32 | 32 | |
33 | 33 | $this->normalize(); |
34 | 34 | |
35 | - add_action( 'admin_menu', [$this, 'addPage'] ); |
|
36 | - add_action( 'pollux/settings/init', [$this, 'addSubmitMetaBox'] ); |
|
37 | - add_filter( 'pollux/settings/instruction', [$this, 'filterInstruction'], 10, 3 ); |
|
38 | - add_filter( 'wp_redirect', [$this, 'filterRedirectOnSave'] ); |
|
39 | - add_action( 'current_screen', [$this, 'register'] ); |
|
40 | - add_action( 'admin_menu', [$this, 'registerSetting'] ); |
|
41 | - add_action( 'pollux/settings/init', [$this, 'reset'] ); |
|
42 | - add_action( 'admin_footer-toplevel_page_' . static::ID, [$this, 'renderFooterScript'] ); |
|
35 | + add_action( 'admin_menu', [ $this, 'addPage' ] ); |
|
36 | + add_action( 'pollux/settings/init', [ $this, 'addSubmitMetaBox' ] ); |
|
37 | + add_filter( 'pollux/settings/instruction', [ $this, 'filterInstruction' ], 10, 3 ); |
|
38 | + add_filter( 'wp_redirect', [ $this, 'filterRedirectOnSave' ] ); |
|
39 | + add_action( 'current_screen', [ $this, 'register' ] ); |
|
40 | + add_action( 'admin_menu', [ $this, 'registerSetting' ] ); |
|
41 | + add_action( 'pollux/settings/init', [ $this, 'reset' ] ); |
|
42 | + add_action( 'admin_footer-toplevel_page_' . static::ID, [ $this, 'renderFooterScript' ] ); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -52,10 +52,10 @@ discard block |
||
52 | 52 | __( 'Site Settings', 'pollux' ), |
53 | 53 | 'edit_theme_options', |
54 | 54 | static::ID, |
55 | - [$this, 'renderPage'], |
|
55 | + [ $this, 'renderPage' ], |
|
56 | 56 | 'dashicons-screenoptions', |
57 | 57 | 1313 |
58 | - ])); |
|
58 | + ] ) ); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | call_user_func_array( 'add_meta_box', apply_filters( 'pollux/settings/metabox/submit', [ |
67 | 67 | 'submitdiv', |
68 | 68 | __( 'Save Settings', 'pollux' ), |
69 | - [ $this, 'renderSubmitMetaBox'], |
|
69 | + [ $this, 'renderSubmitMetaBox' ], |
|
70 | 70 | $this->hook, |
71 | 71 | 'side', |
72 | 72 | 'high', |
73 | - ])); |
|
73 | + ] ) ); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | public function filterRedirectOnSave( $location ) |
92 | 92 | { |
93 | 93 | if( strpos( $location, 'settings-updated=true' ) === false |
94 | - || strpos( $location, sprintf( 'page=%s', static::ID )) === false ) { |
|
94 | + || strpos( $location, sprintf( 'page=%s', static::ID ) ) === false ) { |
|
95 | 95 | return $location; |
96 | 96 | } |
97 | - return add_query_arg([ |
|
97 | + return add_query_arg( [ |
|
98 | 98 | 'page' => static::ID, |
99 | 99 | 'settings-updated' => 'true', |
100 | - ], admin_url( 'admin.php' )); |
|
100 | + ], admin_url( 'admin.php' ) ); |
|
101 | 101 | } |
102 | 102 | |
103 | 103 | /** |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * @return void |
113 | 113 | */ |
114 | - public function register( $metaboxes = [] ) |
|
114 | + public function register( $metaboxes = [ ] ) |
|
115 | 115 | { |
116 | 116 | if( $this->app->screen()->id != $this->hook )return; |
117 | 117 | foreach( parent::register() as $metabox ) { |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | add_screen_option( 'layout_columns', [ |
121 | 121 | 'max' => 2, |
122 | 122 | 'default' => 2, |
123 | - ]); |
|
123 | + ] ); |
|
124 | 124 | do_action( 'pollux/settings/init' ); |
125 | 125 | } |
126 | 126 | |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | */ |
130 | 130 | public function registerSetting() |
131 | 131 | { |
132 | - register_setting( static::ID, static::ID, [$this, 'filterSavedSettings'] ); |
|
132 | + register_setting( static::ID, static::ID, [ $this, 'filterSavedSettings' ] ); |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | 'confirm' => __( 'Are you sure want to do this?', 'pollux' ), |
142 | 142 | 'hook' => $this->hook, |
143 | 143 | 'id' => static::ID, |
144 | - ]); |
|
144 | + ] ); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | /** |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | 'columns' => get_current_screen()->get_columns(), |
154 | 154 | 'id' => static::ID, |
155 | 155 | 'title' => __( 'Site Settings', 'pollux' ), |
156 | - ]); |
|
156 | + ] ); |
|
157 | 157 | } |
158 | 158 | |
159 | 159 | /** |
@@ -168,9 +168,9 @@ discard block |
||
168 | 168 | ]; |
169 | 169 | $this->render( 'settings/submit', [ |
170 | 170 | 'reset' => __( 'Reset Settings', 'pollux' ), |
171 | - 'reset_url' => esc_url( add_query_arg( $query, admin_url( 'admin.php' ))), |
|
171 | + 'reset_url' => esc_url( add_query_arg( $query, admin_url( 'admin.php' ) ) ), |
|
172 | 172 | 'submit' => get_submit_button( __( 'Save', 'pollux' ), 'primary', 'submit', false ), |
173 | - ]); |
|
173 | + ] ); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | /** |
@@ -181,11 +181,11 @@ discard block |
||
181 | 181 | if( filter_input( INPUT_GET, 'page' ) !== static::ID |
182 | 182 | || filter_input( INPUT_GET, 'action' ) !== 'reset' |
183 | 183 | )return; |
184 | - if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), $this->hook )) { |
|
184 | + if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), $this->hook ) ) { |
|
185 | 185 | update_option( static::ID, $this->getDefaults() ); |
186 | 186 | return add_settings_error( static::ID, 'reset', __( 'Settings reset to defaults.', 'pollux' ), 'updated' ); |
187 | 187 | } |
188 | - add_settings_error( static::ID, 'reset', __( 'Failed to reset settings. Please refresh the page and try again.', 'pollux' )); |
|
188 | + add_settings_error( static::ID, 'reset', __( 'Failed to reset settings. Please refresh the page and try again.', 'pollux' ) ); |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | protected function filterArrayByKey( array $array, $key ) |
196 | 196 | { |
197 | 197 | return array_filter( $array, function( $value ) use( $key ) { |
198 | - return !empty( $value[$key] ); |
|
198 | + return !empty( $value[ $key ] ); |
|
199 | 199 | }); |
200 | 200 | } |
201 | 201 | |
@@ -208,11 +208,11 @@ discard block |
||
208 | 208 | |
209 | 209 | array_walk( $metaboxes, function( &$metabox ) { |
210 | 210 | $fields = array_map( function( $field ) { |
211 | - $field = wp_parse_args( $field, ['std' => ''] ); |
|
212 | - return [$field['slug'] => $field['std']]; |
|
213 | - }, $this->filterArrayByKey( $metabox['fields'], 'slug' )); |
|
211 | + $field = wp_parse_args( $field, [ 'std' => '' ] ); |
|
212 | + return [ $field[ 'slug' ] => $field[ 'std' ] ]; |
|
213 | + }, $this->filterArrayByKey( $metabox[ 'fields' ], 'slug' ) ); |
|
214 | 214 | $metabox = [ |
215 | - $metabox['slug'] => call_user_func_array( 'array_merge', $fields ), |
|
215 | + $metabox[ 'slug' ] => call_user_func_array( 'array_merge', $fields ), |
|
216 | 216 | ]; |
217 | 217 | }); |
218 | 218 | return call_user_func_array( 'array_merge', $metaboxes ); |
@@ -223,14 +223,14 @@ discard block |
||
223 | 223 | */ |
224 | 224 | protected function normalize() |
225 | 225 | { |
226 | - foreach( $this->app->config['settings'] as $id => $metabox ) { |
|
226 | + foreach( $this->app->config[ 'settings' ] as $id => $metabox ) { |
|
227 | 227 | $defaults = [ |
228 | - 'condition' => [], |
|
229 | - 'fields' => [], |
|
228 | + 'condition' => [ ], |
|
229 | + 'fields' => [ ], |
|
230 | 230 | 'id' => $id, |
231 | 231 | 'slug' => $id, |
232 | 232 | ]; |
233 | - $this->metaboxes[] = $this->normalizeThis( $metabox, $defaults, $id ); |
|
233 | + $this->metaboxes[ ] = $this->normalizeThis( $metabox, $defaults, $id ); |
|
234 | 234 | } |
235 | 235 | } |
236 | 236 | |
@@ -241,10 +241,10 @@ discard block |
||
241 | 241 | */ |
242 | 242 | protected function normalizeFieldName( $name, array $data, $parentId ) |
243 | 243 | { |
244 | - if( !empty( $name )) { |
|
244 | + if( !empty( $name ) ) { |
|
245 | 245 | return $name; |
246 | 246 | } |
247 | - $name = str_replace( sprintf( '%s-%s-', static::ID, $parentId ), '', $data['id'] ); |
|
247 | + $name = str_replace( sprintf( '%s-%s-', static::ID, $parentId ), '', $data[ 'id' ] ); |
|
248 | 248 | return sprintf( '%s[%s][%s]', static::ID, $parentId, $name ); |
249 | 249 | } |
250 | 250 |
@@ -113,7 +113,9 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public function register( $metaboxes = [] ) |
115 | 115 | { |
116 | - if( $this->app->screen()->id != $this->hook )return; |
|
116 | + if( $this->app->screen()->id != $this->hook ) { |
|
117 | + return; |
|
118 | + } |
|
117 | 119 | foreach( parent::register() as $metabox ) { |
118 | 120 | new SettingsMetaBox( $metabox ); |
119 | 121 | } |
@@ -180,7 +182,9 @@ discard block |
||
180 | 182 | { |
181 | 183 | if( filter_input( INPUT_GET, 'page' ) !== static::ID |
182 | 184 | || filter_input( INPUT_GET, 'action' ) !== 'reset' |
183 | - )return; |
|
185 | + ) { |
|
186 | + return; |
|
187 | + } |
|
184 | 188 | if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), $this->hook )) { |
185 | 189 | update_option( static::ID, $this->getDefaults() ); |
186 | 190 | return add_settings_error( static::ID, 'reset', __( 'Settings reset to defaults.', 'pollux' ), 'updated' ); |
@@ -194,7 +198,8 @@ discard block |
||
194 | 198 | */ |
195 | 199 | protected function filterArrayByKey( array $array, $key ) |
196 | 200 | { |
197 | - return array_filter( $array, function( $value ) use( $key ) { |
|
201 | + return array_filter( $array, function( $value ) use( $key ) |
|
202 | + { |
|
198 | 203 | return !empty( $value[$key] ); |
199 | 204 | }); |
200 | 205 | } |
@@ -206,8 +211,10 @@ discard block |
||
206 | 211 | { |
207 | 212 | $metaboxes = $this->filterArrayByKey( $this->metaboxes, 'slug' ); |
208 | 213 | |
209 | - array_walk( $metaboxes, function( &$metabox ) { |
|
210 | - $fields = array_map( function( $field ) { |
|
214 | + array_walk( $metaboxes, function( &$metabox ) |
|
215 | + { |
|
216 | + $fields = array_map( function( $field ) |
|
217 | + { |
|
211 | 218 | $field = wp_parse_args( $field, ['std' => ''] ); |
212 | 219 | return [$field['slug'] => $field['std']]; |
213 | 220 | }, $this->filterArrayByKey( $metabox['fields'], 'slug' )); |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | |
24 | 24 | public function __construct() |
25 | 25 | { |
26 | - $this->file = realpath( dirname( dirname( __FILE__ )) . '/pollux.php' ); |
|
27 | - $this->gatekeeper = new GateKeeper( plugin_basename( $this->file )); |
|
26 | + $this->file = realpath( dirname( dirname( __FILE__ ) ) . '/pollux.php' ); |
|
27 | + $this->gatekeeper = new GateKeeper( plugin_basename( $this->file ) ); |
|
28 | 28 | |
29 | 29 | $data = get_file_data( $this->file, array( |
30 | 30 | 'id' => 'Text Domain', |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | { |
44 | 44 | Facade::clearResolvedInstances(); |
45 | 45 | Facade::setFacadeApplication( $this ); |
46 | - $this->config = (new Config( $this ))->get(); |
|
46 | + $this->config = ( new Config( $this ) )->get(); |
|
47 | 47 | $this->registerAliases(); |
48 | 48 | $classNames = array( |
49 | 49 | 'MetaBox', 'PostType', 'Taxonomy', 'Settings', |
@@ -60,10 +60,10 @@ discard block |
||
60 | 60 | */ |
61 | 61 | public function buildClassName( $name, $path = '' ) |
62 | 62 | { |
63 | - $className = array_map( 'ucfirst', array_map( 'strtolower', preg_split( '/[-_]/', $name ))); |
|
63 | + $className = array_map( 'ucfirst', array_map( 'strtolower', preg_split( '/[-_]/', $name ) ) ); |
|
64 | 64 | $className = implode( '', $className ); |
65 | 65 | return !empty( $path ) |
66 | - ? str_replace( '\\\\', '\\', sprintf( '%s\%s', $path, $className )) |
|
66 | + ? str_replace( '\\\\', '\\', sprintf( '%s\%s', $path, $className ) ) |
|
67 | 67 | : $className; |
68 | 68 | } |
69 | 69 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | */ |
75 | 75 | public function buildMethodName( $name, $prefix = 'get' ) |
76 | 76 | { |
77 | - return lcfirst( $this->buildClassName( $prefix . '-' . $name )); |
|
77 | + return lcfirst( $this->buildClassName( $prefix . '-' . $name ) ); |
|
78 | 78 | } |
79 | 79 | |
80 | 80 | /** |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | public function environment( $checkFor = '' ) |
85 | 85 | { |
86 | 86 | $environment = defined( 'WP_ENV' ) ? WP_ENV : 'production'; |
87 | - if( !empty( $checkFor )) { |
|
87 | + if( !empty( $checkFor ) ) { |
|
88 | 88 | return $environment == $checkFor; |
89 | 89 | } |
90 | 90 | return $environment; |
@@ -101,10 +101,10 @@ discard block |
||
101 | 101 | |
102 | 102 | $controller = $this->make( 'Controller' ); |
103 | 103 | |
104 | - add_filter( 'admin_footer_text', array( $controller, 'filterWordPressFooter' )); |
|
105 | - add_action( 'admin_enqueue_scripts', array( $controller, 'registerAssets' )); |
|
106 | - add_action( 'admin_init', array( $controller, 'removeDashboardWidgets' )); |
|
107 | - add_action( 'wp_before_admin_bar_render', array( $controller, 'removeWordPressMenu' )); |
|
104 | + add_filter( 'admin_footer_text', array( $controller, 'filterWordPressFooter' ) ); |
|
105 | + add_action( 'admin_enqueue_scripts', array( $controller, 'registerAssets' ) ); |
|
106 | + add_action( 'admin_init', array( $controller, 'removeDashboardWidgets' ) ); |
|
107 | + add_action( 'wp_before_admin_bar_render', array( $controller, 'removeWordPressMenu' ) ); |
|
108 | 108 | |
109 | 109 | // Disallow indexing of the site on non-production environments |
110 | 110 | if( !$this->environment( 'production' ) && !is_admin() ) { |
@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | { |
120 | 120 | $settings = get_option( Settings::ID ); |
121 | 121 | if( !$settings ) { |
122 | - update_option( Settings::ID, [] ); |
|
122 | + update_option( Settings::ID, [ ] ); |
|
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
@@ -170,6 +170,6 @@ discard block |
||
170 | 170 | */ |
171 | 171 | public function url( $path = '' ) |
172 | 172 | { |
173 | - return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' )); |
|
173 | + return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' ) ); |
|
174 | 174 | } |
175 | 175 | } |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | public function filterWordPressFooter( $text ) |
25 | 25 | { |
26 | - if( $this->app->config['remove_wordpress_footer'] )return; |
|
26 | + if( $this->app->config[ 'remove_wordpress_footer' ] )return; |
|
27 | 27 | return $text; |
28 | 28 | } |
29 | 29 | |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | public function registerAssets() |
35 | 35 | { |
36 | - if( $this->app->screen()->id == sprintf( 'toplevel_page_%s', Settings::ID )) { |
|
36 | + if( $this->app->screen()->id == sprintf( 'toplevel_page_%s', Settings::ID ) ) { |
|
37 | 37 | wp_enqueue_script( 'common' ); |
38 | 38 | wp_enqueue_script( 'wp-lists' ); |
39 | 39 | wp_enqueue_script( 'postbox' ); |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | */ |
65 | 65 | public function removeDashboardWidgets() |
66 | 66 | { |
67 | - if( !$this->app->config['remove_dashboard_widgets'] )return; |
|
67 | + if( !$this->app->config[ 'remove_dashboard_widgets' ] )return; |
|
68 | 68 | $widgets = apply_filters( 'pollux/dashoard/widgets', [ |
69 | 69 | 'dashboard_primary', |
70 | 70 | 'dashboard_quick_press', |
71 | - ]); |
|
71 | + ] ); |
|
72 | 72 | foreach( $widgets as $widget ) { |
73 | 73 | remove_meta_box( $widget, 'dashboard', 'normal' ); |
74 | 74 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | */ |
81 | 81 | public function removeWordPressMenu() |
82 | 82 | { |
83 | - if( !$this->app->config['remove_wordpress_menu'] )return; |
|
83 | + if( !$this->app->config[ 'remove_wordpress_menu' ] )return; |
|
84 | 84 | global $wp_admin_bar; |
85 | 85 | $wp_admin_bar->remove_menu( 'wp-logo' ); |
86 | 86 | } |