@@ -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 |
@@ -66,7 +66,9 @@ |
||
66 | 66 | trailingslashit( dirname( dirname( ABSPATH ))), |
67 | 67 | ]); |
68 | 68 | foreach( (array) $configLocations as $location ) { |
69 | - if( !file_exists( $location . $configYaml ))continue; |
|
69 | + if( !file_exists( $location . $configYaml )) { |
|
70 | + continue; |
|
71 | + } |
|
70 | 72 | return $location . $configYaml; |
71 | 73 | } |
72 | 74 | return $this->app->path( 'defaults.yml' ); |
@@ -18,7 +18,8 @@ |
||
18 | 18 | { |
19 | 19 | foreach( $this->types as $type => $args ) { |
20 | 20 | add_action( "manage_{$type}_posts_custom_column", [$this, 'printColumnValue'], 10, 2 ); |
21 | - add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args ) { |
|
21 | + add_filter( "manage_{$type}_posts_columns", function( $columns ) use( $args ) |
|
22 | + { |
|
22 | 23 | return count( $args['columns'] ) > 1 |
23 | 24 | ? $args['columns'] |
24 | 25 | : $columns; |
@@ -62,7 +62,8 @@ |
||
62 | 62 | $this->types, |
63 | 63 | get_post_types( ['_builtin' => true] ) |
64 | 64 | ); |
65 | - array_walk( $types, function( $args, $type ) { |
|
65 | + array_walk( $types, function( $args, $type ) |
|
66 | + { |
|
66 | 67 | register_post_type( $type, array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
67 | 68 | }); |
68 | 69 | } |