@@ -5,7 +5,8 @@ discard block |
||
5 | 5 | * |
6 | 6 | * @return mixed |
7 | 7 | */ |
8 | -function pollux_get_post_meta( $metaKey, array $args = [] ) { |
|
8 | +function pollux_get_post_meta( $metaKey, array $args = [] ) |
|
9 | +{ |
|
9 | 10 | return \GeminiLabs\Pollux\Facades\PostMeta::get( $metaKey, $args ); |
10 | 11 | } |
11 | 12 | |
@@ -14,6 +15,7 @@ discard block |
||
14 | 15 | * |
15 | 16 | * @return mixed |
16 | 17 | */ |
17 | -function pollux_get_option( $group, $key = false, $fallback = '' ) { |
|
18 | +function pollux_get_option( $group, $key = false, $fallback = '' ) |
|
19 | +{ |
|
18 | 20 | return \GeminiLabs\Pollux\Facades\SiteMeta::get( $group, $key, $fallback ); |
19 | 21 | } |
@@ -13,9 +13,13 @@ |
||
13 | 13 | ]; |
14 | 14 | foreach( $namespaces as $prefix => $base_dir ) { |
15 | 15 | $len = strlen( $prefix ); |
16 | - if( strncmp( $prefix, $class, $len ) !== 0 )continue; |
|
16 | + if( strncmp( $prefix, $class, $len ) !== 0 ) { |
|
17 | + continue; |
|
18 | + } |
|
17 | 19 | $file = $base_dir . str_replace( '\\', '/', substr( $class, $len ) ) . '.php'; |
18 | - if( !file_exists( $file ) )continue; |
|
20 | + if( !file_exists( $file ) ) { |
|
21 | + continue; |
|
22 | + } |
|
19 | 23 | require $file; |
20 | 24 | break; |
21 | 25 | } |
@@ -31,7 +31,8 @@ |
||
31 | 31 | } |
32 | 32 | |
33 | 33 | private function __clone() |
34 | - {} |
|
34 | + { |
|
35 | +} |
|
35 | 36 | |
36 | 37 | /** |
37 | 38 | * Get or create the singleton alias loader instance. |
@@ -23,7 +23,9 @@ 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'] ) { |
|
27 | + return; |
|
28 | + } |
|
27 | 29 | return $text; |
28 | 30 | } |
29 | 31 | |
@@ -64,7 +66,9 @@ discard block |
||
64 | 66 | */ |
65 | 67 | public function removeDashboardWidgets() |
66 | 68 | { |
67 | - if( !$this->app->config['remove_dashboard_widgets'] )return; |
|
69 | + if( !$this->app->config['remove_dashboard_widgets'] ) { |
|
70 | + return; |
|
71 | + } |
|
68 | 72 | $widgets = apply_filters( 'pollux/dashoard/widgets', [ |
69 | 73 | 'dashboard_primary', |
70 | 74 | 'dashboard_quick_press', |
@@ -80,7 +84,9 @@ discard block |
||
80 | 84 | */ |
81 | 85 | public function removeWordPressMenu() |
82 | 86 | { |
83 | - if( !$this->app->config['remove_wordpress_menu'] )return; |
|
87 | + if( !$this->app->config['remove_wordpress_menu'] ) { |
|
88 | + return; |
|
89 | + } |
|
84 | 90 | global $wp_admin_bar; |
85 | 91 | $wp_admin_bar->remove_menu( 'wp-logo' ); |
86 | 92 | } |
@@ -31,7 +31,8 @@ |
||
31 | 31 | 'name' => 'Plugin Name', |
32 | 32 | 'version' => 'Version', |
33 | 33 | ), 'plugin' ); |
34 | - array_walk( $data, function( $value, $key ) { |
|
34 | + array_walk( $data, function( $value, $key ) |
|
35 | + { |
|
35 | 36 | $this->$key = $value; |
36 | 37 | }); |
37 | 38 | } |
@@ -14,7 +14,9 @@ |
||
14 | 14 | |
15 | 15 | public function __construct( $plugin ) |
16 | 16 | { |
17 | - if( $this->proceed() )return; |
|
17 | + if( $this->proceed() ) { |
|
18 | + return; |
|
19 | + } |
|
18 | 20 | |
19 | 21 | $this->plugin = $plugin; |
20 | 22 |
@@ -12,7 +12,9 @@ |
||
12 | 12 | */ |
13 | 13 | public function get( $metaKey, array $args = [] ) |
14 | 14 | { |
15 | - if( empty( $metaKey ))return; |
|
15 | + if( empty( $metaKey )) { |
|
16 | + return; |
|
17 | + } |
|
16 | 18 | |
17 | 19 | $args = $this->normalize( $args ); |
18 | 20 | $metaKey = $this->buildMetaKey( $metaKey, $args['prefix'] ); |
@@ -54,7 +54,8 @@ discard block |
||
54 | 54 | |
55 | 55 | foreach( $this->types as $type => $args ) { |
56 | 56 | add_action( "manage_{$type}_posts_custom_column", [$this, 'printColumnValue'], 10, 2 ); |
57 | - add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args ) { |
|
57 | + add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args ) |
|
58 | + { |
|
58 | 59 | return count( $args['columns'] ) > 1 |
59 | 60 | ? $args['columns'] |
60 | 61 | : $columns; |
@@ -71,7 +72,8 @@ discard block |
||
71 | 72 | $this->types, |
72 | 73 | get_post_types( ['_builtin' => true] ) |
73 | 74 | ); |
74 | - array_walk( $types, function( $args, $type ) { |
|
75 | + array_walk( $types, function( $args, $type ) |
|
76 | + { |
|
75 | 77 | register_post_type( $type, array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
76 | 78 | }); |
77 | 79 | } |
@@ -47,10 +47,14 @@ discard block |
||
47 | 47 | */ |
48 | 48 | public function filterByTaxonomy( WP_Query $query ) |
49 | 49 | { |
50 | - if( !is_admin() || $this->app->screen()->base != 'edit' )return; |
|
50 | + if( !is_admin() || $this->app->screen()->base != 'edit' ) { |
|
51 | + return; |
|
52 | + } |
|
51 | 53 | $vars = &$query->query_vars; |
52 | 54 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
53 | - if( !isset( $vars[$taxonomy] ))return; |
|
55 | + if( !isset( $vars[$taxonomy] )) { |
|
56 | + return; |
|
57 | + } |
|
54 | 58 | if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
55 | 59 | $vars[$taxonomy] = $term->slug; |
56 | 60 | } |
@@ -66,7 +70,9 @@ discard block |
||
66 | 70 | { |
67 | 71 | global $wp_query; |
68 | 72 | foreach( $this->taxonomies as $taxonomy => $args ) { |
69 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
73 | + if( !in_array( get_current_screen()->post_type, $args['post_types'] )) { |
|
74 | + continue; |
|
75 | + } |
|
70 | 76 | $selected = isset( $wp_query->query[$taxonomy] ) |
71 | 77 | ? $wp_query->query[$taxonomy] |
72 | 78 | : false; |
@@ -87,7 +93,8 @@ discard block |
||
87 | 93 | */ |
88 | 94 | public function register() |
89 | 95 | { |
90 | - array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
|
96 | + array_walk( $this->taxonomies, function( $args, $taxonomy ) |
|
97 | + { |
|
91 | 98 | register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
92 | 99 | foreach( $args['post_types'] as $type ) { |
93 | 100 | register_taxonomy_for_object_type( $taxonomy, $type ); |