@@ -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. |
@@ -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; |
@@ -21,7 +21,8 @@ discard block |
||
| 21 | 21 | */ |
| 22 | 22 | public function validate( array $conditions ) |
| 23 | 23 | { |
| 24 | - array_walk( $conditions, function( &$value, $key ) { |
|
| 24 | + array_walk( $conditions, function( &$value, $key ) |
|
| 25 | + { |
|
| 25 | 26 | $method = ( new Helper )->buildMethodName( $key, 'validate' ); |
| 26 | 27 | $value = method_exists( $this, $method ) |
| 27 | 28 | ? $this->$method( $value ) |
@@ -41,7 +42,8 @@ discard block |
||
| 41 | 42 | foreach( $conditions as $key ) { |
| 42 | 43 | $conditions[str_replace( '!', '', $key )] = substr( $key, 0, 1 ) == '!' ? 0 : 1; |
| 43 | 44 | } |
| 44 | - $conditions = array_filter( $conditions, function( $key ) { |
|
| 45 | + $conditions = array_filter( $conditions, function( $key ) |
|
| 46 | + { |
|
| 45 | 47 | return !is_numeric( $key ); |
| 46 | 48 | }, ARRAY_FILTER_USE_KEY ); |
| 47 | 49 | } |
@@ -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'] ); |