@@ -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_action( 'restrict_manage_posts', [ $this, 'printFilters'] ); |
|
| 40 | - add_action( 'init', [ $this, 'register'] ); |
|
| 41 | - add_filter( 'parse_query', [ $this, 'filterByTaxonomy'] ); |
|
| 39 | + add_action( 'restrict_manage_posts', [ $this, 'printFilters' ] ); |
|
| 40 | + add_action( 'init', [ $this, 'register' ] ); |
|
| 41 | + add_filter( 'parse_query', [ $this, 'filterByTaxonomy' ] ); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -50,9 +50,9 @@ discard block |
||
| 50 | 50 | if( !is_admin() || $this->app->make( 'Helper' )->getCurrentScreen()->base != 'edit' )return; |
| 51 | 51 | $vars = &$query->query_vars; |
| 52 | 52 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
| 53 | - if( !isset( $vars[$taxonomy] ))return; |
|
| 54 | - if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
|
| 55 | - $vars[$taxonomy] = $term->slug; |
|
| 53 | + if( !isset( $vars[ $taxonomy ] ) )return; |
|
| 54 | + if( $term = get_term_by( 'id', $vars[ $taxonomy ], $taxonomy ) ) { |
|
| 55 | + $vars[ $taxonomy ] = $term->slug; |
|
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | return $query; |
@@ -66,18 +66,18 @@ discard block |
||
| 66 | 66 | { |
| 67 | 67 | global $wp_query; |
| 68 | 68 | foreach( $this->taxonomies as $taxonomy => $args ) { |
| 69 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
| 70 | - $selected = isset( $wp_query->query[$taxonomy] ) |
|
| 71 | - ? $wp_query->query[$taxonomy] |
|
| 69 | + if( !in_array( get_current_screen()->post_type, $args[ 'post_types' ] ) )continue; |
|
| 70 | + $selected = isset( $wp_query->query[ $taxonomy ] ) |
|
| 71 | + ? $wp_query->query[ $taxonomy ] |
|
| 72 | 72 | : false; |
| 73 | - wp_dropdown_categories([ |
|
| 73 | + wp_dropdown_categories( [ |
|
| 74 | 74 | 'hide_if_empty' => true, |
| 75 | 75 | 'name' => $taxonomy, |
| 76 | 76 | 'orderby' => 'name', |
| 77 | 77 | 'selected' => $selected, |
| 78 | - 'show_option_all' => $args['labels']['all_items'], |
|
| 78 | + 'show_option_all' => $args[ 'labels' ][ 'all_items' ], |
|
| 79 | 79 | 'taxonomy' => $taxonomy, |
| 80 | - ]); |
|
| 80 | + ] ); |
|
| 81 | 81 | } |
| 82 | 82 | } |
| 83 | 83 | |
@@ -88,8 +88,8 @@ discard block |
||
| 88 | 88 | public function register() |
| 89 | 89 | { |
| 90 | 90 | array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
| 91 | - register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
|
| 92 | - foreach( $args['post_types'] as $type ) { |
|
| 91 | + register_taxonomy( $taxonomy, $args[ 'post_types' ], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ) ) ); |
|
| 92 | + foreach( $args[ 'post_types' ] as $type ) { |
|
| 93 | 93 | register_taxonomy_for_object_type( $taxonomy, $type ); |
| 94 | 94 | } |
| 95 | 95 | }); |
@@ -100,14 +100,14 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | protected function normalize() |
| 102 | 102 | { |
| 103 | - foreach( $this->app->config['taxonomies'] as $taxonomy => $args ) { |
|
| 104 | - $this->taxonomies[$taxonomy] = apply_filters( 'pollux/taxonomy/args', |
|
| 103 | + foreach( $this->app->config[ 'taxonomies' ] as $taxonomy => $args ) { |
|
| 104 | + $this->taxonomies[ $taxonomy ] = apply_filters( 'pollux/taxonomy/args', |
|
| 105 | 105 | $this->normalizeThis( $args, static::TAXONOMY_DEFAULTS, $taxonomy ) |
| 106 | 106 | ); |
| 107 | 107 | } |
| 108 | 108 | $this->taxonomies = array_diff_key( |
| 109 | 109 | $this->taxonomies, |
| 110 | - get_taxonomies( ['_builtin' => true] ) |
|
| 110 | + get_taxonomies( [ '_builtin' => true ] ) |
|
| 111 | 111 | ); |
| 112 | 112 | } |
| 113 | 113 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | protected function normalizeLabels( $labels, array $args ) |
| 119 | 119 | { |
| 120 | - return wp_parse_args( $labels, $this->setLabels( $args )); |
|
| 120 | + return wp_parse_args( $labels, $this->setLabels( $args ) ); |
|
| 121 | 121 | } |
| 122 | 122 | |
| 123 | 123 | /** |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | protected function normalizeMenuName( $menuname, array $args ) |
| 128 | 128 | { |
| 129 | 129 | return empty( $menuname ) |
| 130 | - ? $args['plural'] |
|
| 130 | + ? $args[ 'plural' ] |
|
| 131 | 131 | : $menuname; |
| 132 | 132 | } |
| 133 | 133 | |
@@ -146,17 +146,17 @@ discard block |
||
| 146 | 146 | protected function setLabels( array $args ) |
| 147 | 147 | { |
| 148 | 148 | return apply_filters( 'pollux/taxonomy/labels', [ |
| 149 | - 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args['single'] ), |
|
| 150 | - 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args['plural'] ), |
|
| 151 | - 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args['single'] ), |
|
| 152 | - 'menu_name' => $this->normalizeMenuName( $args['menu_name'], $args ), |
|
| 153 | - 'name' => $args['plural'], |
|
| 154 | - 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args['single'] ), |
|
| 155 | - 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args['plural'] ), |
|
| 156 | - 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args['plural'] ), |
|
| 157 | - 'singular_name' => $args['single'], |
|
| 158 | - 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args['single'] ), |
|
| 159 | - 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args['single'] ), |
|
| 149 | + 'add_new_item' => sprintf( _x( 'Add New %s', 'Add new taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
| 150 | + 'all_items' => sprintf( _x( 'All %s', 'All taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
| 151 | + 'edit_item' => sprintf( _x( 'Edit %s', 'Edit taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
| 152 | + 'menu_name' => $this->normalizeMenuName( $args[ 'menu_name' ], $args ), |
|
| 153 | + 'name' => $args[ 'plural' ], |
|
| 154 | + 'new_item_name' => sprintf( _x( 'New %s Name', 'New taxonomy name', 'pollux' ), $args[ 'single' ] ), |
|
| 155 | + 'not_found' => sprintf( _x( 'No %s found', 'No taxonomies found', 'pollux' ), $args[ 'plural' ] ), |
|
| 156 | + 'search_items' => sprintf( _x( 'Search %s', 'Search taxonomies', 'pollux' ), $args[ 'plural' ] ), |
|
| 157 | + 'singular_name' => $args[ 'single' ], |
|
| 158 | + 'update_item' => sprintf( _x( 'Update %s', 'Update taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
| 159 | + 'view_item' => sprintf( _x( 'View %s', 'View taxonomy', 'pollux' ), $args[ 'single' ] ), |
|
| 160 | 160 | ], $args ); |
| 161 | 161 | } |
| 162 | 162 | } |
@@ -13,10 +13,10 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function buildClassName( $name, $path = '' ) |
| 15 | 15 | { |
| 16 | - $className = array_map( 'ucfirst', array_map( 'strtolower', preg_split( '/[-_]/', $name ))); |
|
| 16 | + $className = array_map( 'ucfirst', array_map( 'strtolower', preg_split( '/[-_]/', $name ) ) ); |
|
| 17 | 17 | $className = implode( '', $className ); |
| 18 | 18 | return !empty( $path ) |
| 19 | - ? str_replace( '\\\\', '\\', sprintf( '%s\%s', $path, $className )) |
|
| 19 | + ? str_replace( '\\\\', '\\', sprintf( '%s\%s', $path, $className ) ) |
|
| 20 | 20 | : $className; |
| 21 | 21 | } |
| 22 | 22 | |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | public function buildMethodName( $name, $prefix = 'get' ) |
| 29 | 29 | { |
| 30 | - return lcfirst( $this->buildClassName( $prefix . '-' . $name )); |
|
| 30 | + return lcfirst( $this->buildClassName( $prefix . '-' . $name ) ); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -36,9 +36,9 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public function getClassname( $toLowerCase = true ) |
| 38 | 38 | { |
| 39 | - $paths = explode( '\\', get_class( $this )); |
|
| 39 | + $paths = explode( '\\', get_class( $this ) ); |
|
| 40 | 40 | return wp_validate_boolean( $toLowerCase ) |
| 41 | - ? strtolower( end( $paths )) |
|
| 41 | + ? strtolower( end( $paths ) ) |
|
| 42 | 42 | : end( $paths ); |
| 43 | 43 | } |
| 44 | 44 | |
@@ -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 | - $settingsPage = sprintf( 'toplevel_page_%s', apply_filters( 'pollux/settings/option', Settings::ID )); |
|
| 36 | + $settingsPage = sprintf( 'toplevel_page_%s', apply_filters( 'pollux/settings/option', Settings::ID ) ); |
|
| 37 | 37 | if( $this->app->make( 'Helper' )->getCurrentScreen()->id == $settingsPage ) { |
| 38 | 38 | wp_enqueue_script( 'common' ); |
| 39 | 39 | wp_enqueue_script( 'wp-lists' ); |
@@ -41,17 +41,17 @@ discard block |
||
| 41 | 41 | } |
| 42 | 42 | wp_enqueue_style( 'pollux/main.css', |
| 43 | 43 | $this->app->url( 'assets/main.css' ), |
| 44 | - apply_filters( 'pollux/enqueue/css/deps', [] ), |
|
| 44 | + apply_filters( 'pollux/enqueue/css/deps', [ ] ), |
|
| 45 | 45 | $this->app->version |
| 46 | 46 | ); |
| 47 | 47 | wp_enqueue_script( 'pollux/main.js', |
| 48 | 48 | $this->app->url( 'assets/main.js' ), |
| 49 | - apply_filters( 'pollux/enqueue/js/deps', [] ), |
|
| 49 | + apply_filters( 'pollux/enqueue/js/deps', [ ] ), |
|
| 50 | 50 | $this->app->version |
| 51 | 51 | ); |
| 52 | 52 | wp_localize_script( 'pollux/main.js', |
| 53 | 53 | apply_filters( 'pollux/enqueue/js/localize/name', $this->app->id ), |
| 54 | - apply_filters( 'pollux/enqueue/js/localize/variables', [] ) |
|
| 54 | + apply_filters( 'pollux/enqueue/js/localize/variables', [ ] ) |
|
| 55 | 55 | ); |
| 56 | 56 | } |
| 57 | 57 | |
@@ -61,11 +61,11 @@ discard block |
||
| 61 | 61 | */ |
| 62 | 62 | public function removeDashboardWidgets() |
| 63 | 63 | { |
| 64 | - if( !$this->app->config['remove_dashboard_widgets'] )return; |
|
| 64 | + if( !$this->app->config[ 'remove_dashboard_widgets' ] )return; |
|
| 65 | 65 | $widgets = apply_filters( 'pollux/dashoard/widgets', [ |
| 66 | 66 | 'dashboard_primary', |
| 67 | 67 | 'dashboard_quick_press', |
| 68 | - ]); |
|
| 68 | + ] ); |
|
| 69 | 69 | foreach( $widgets as $widget ) { |
| 70 | 70 | remove_meta_box( $widget, 'dashboard', 'normal' ); |
| 71 | 71 | } |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | */ |
| 78 | 78 | public function removeWordPressMenu() |
| 79 | 79 | { |
| 80 | - if( !$this->app->config['remove_wordpress_menu'] )return; |
|
| 80 | + if( !$this->app->config[ 'remove_wordpress_menu' ] )return; |
|
| 81 | 81 | global $wp_admin_bar; |
| 82 | 82 | $wp_admin_bar->remove_menu( 'wp-logo' ); |
| 83 | 83 | } |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | |
| 23 | 23 | public function __construct() |
| 24 | 24 | { |
| 25 | - $this->file = realpath( dirname( dirname( __FILE__ )) . '/pollux.php' ); |
|
| 26 | - $this->gatekeeper = new GateKeeper( plugin_basename( $this->file )); |
|
| 25 | + $this->file = realpath( dirname( dirname( __FILE__ ) ) . '/pollux.php' ); |
|
| 26 | + $this->gatekeeper = new GateKeeper( plugin_basename( $this->file ) ); |
|
| 27 | 27 | |
| 28 | 28 | $data = get_file_data( $this->file, array( |
| 29 | 29 | 'id' => 'Text Domain', |
@@ -46,10 +46,10 @@ discard block |
||
| 46 | 46 | |
| 47 | 47 | $controller = $this->make( 'Controller' ); |
| 48 | 48 | |
| 49 | - add_action( 'admin_enqueue_scripts', array( $controller, 'registerAssets' )); |
|
| 50 | - add_action( 'admin_init', array( $controller, 'removeDashboardWidgets' )); |
|
| 51 | - add_action( 'wp_before_admin_bar_render', array( $controller, 'removeWordPressMenu' )); |
|
| 52 | - add_filter( 'admin_footer_text', array( $controller, 'filterWordPressFooter' )); |
|
| 49 | + add_action( 'admin_enqueue_scripts', array( $controller, 'registerAssets' ) ); |
|
| 50 | + add_action( 'admin_init', array( $controller, 'removeDashboardWidgets' ) ); |
|
| 51 | + add_action( 'wp_before_admin_bar_render', array( $controller, 'removeWordPressMenu' ) ); |
|
| 52 | + add_filter( 'admin_footer_text', array( $controller, 'filterWordPressFooter' ) ); |
|
| 53 | 53 | |
| 54 | 54 | // Disallow indexing of the site on non-production environments |
| 55 | 55 | if( !$this->environment( 'production' ) && !is_admin() ) { |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | { |
| 65 | 65 | Facade::clearResolvedInstances(); |
| 66 | 66 | Facade::setFacadeApplication( $this ); |
| 67 | - $this->config = (new Config( $this ))->get(); |
|
| 67 | + $this->config = ( new Config( $this ) )->get(); |
|
| 68 | 68 | $this->registerAliases(); |
| 69 | 69 | $classNames = array( |
| 70 | 70 | 'MetaBox\MetaBox', 'PostType\PostType', 'Settings\Settings', 'Taxonomy\Taxonomy', |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | public function environment( $checkFor = '' ) |
| 82 | 82 | { |
| 83 | 83 | $environment = defined( 'WP_ENV' ) ? WP_ENV : 'production'; |
| 84 | - if( !empty( $checkFor )) { |
|
| 84 | + if( !empty( $checkFor ) ) { |
|
| 85 | 85 | return $environment == $checkFor; |
| 86 | 86 | } |
| 87 | 87 | return $environment; |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | $option = apply_filters( 'pollux/settings/option', Settings::ID ); |
| 96 | 96 | $settings = get_option( $option ); |
| 97 | 97 | if( !$settings ) { |
| 98 | - update_option( $option, [] ); |
|
| 98 | + update_option( $option, [ ] ); |
|
| 99 | 99 | } |
| 100 | 100 | } |
| 101 | 101 | |
@@ -146,6 +146,6 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public function url( $path = '' ) |
| 148 | 148 | { |
| 149 | - return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' )); |
|
| 149 | + return esc_url( plugin_dir_url( $this->file ) . ltrim( trim( $path ), '/' ) ); |
|
| 150 | 150 | } |
| 151 | 151 | } |
@@ -35,14 +35,14 @@ discard block |
||
| 35 | 35 | * @param string $view |
| 36 | 36 | * @return void |
| 37 | 37 | */ |
| 38 | - public function render( $view, array $data = [] ) |
|
| 38 | + public function render( $view, array $data = [ ] ) |
|
| 39 | 39 | { |
| 40 | 40 | $file = apply_filters( 'pollux/views/file', |
| 41 | - $this->app->path( sprintf( 'views/%s.php', str_replace( '.php', '', $view ))), |
|
| 41 | + $this->app->path( sprintf( 'views/%s.php', str_replace( '.php', '', $view ) ) ), |
|
| 42 | 42 | $view, |
| 43 | 43 | $data |
| 44 | 44 | ); |
| 45 | - if( file_exists( $file )) { |
|
| 45 | + if( file_exists( $file ) ) { |
|
| 46 | 46 | extract( $data ); |
| 47 | 47 | return include $file; |
| 48 | 48 | } |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | $data = wp_parse_args( $data, $defaults ); |
| 58 | 58 | foreach( $defaults as $key => $value ) { |
| 59 | 59 | $method = $this->app->make( 'Helper' )->buildMethodName( $key, 'normalize' ); |
| 60 | - if( method_exists( $this, $method )) { |
|
| 61 | - $data[$key] = $this->$method( $data[$key], $data, $id ); |
|
| 60 | + if( method_exists( $this, $method ) ) { |
|
| 61 | + $data[ $key ] = $this->$method( $data[ $key ], $data, $id ); |
|
| 62 | 62 | } |
| 63 | 63 | } |
| 64 | 64 | return $data; |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | /** |
| 18 | 18 | * @var array |
| 19 | 19 | */ |
| 20 | - public $metaboxes = []; |
|
| 20 | + public $metaboxes = [ ]; |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | 23 | * {@inheritdoc} |
@@ -26,8 +26,8 @@ discard block |
||
| 26 | 26 | { |
| 27 | 27 | $this->normalize(); |
| 28 | 28 | |
| 29 | - add_filter( 'rwmb_show', [$this, 'show'], 10, 2 ); |
|
| 30 | - add_filter( 'rwmb_meta_boxes', [$this, 'register'] ); |
|
| 29 | + add_filter( 'rwmb_show', [ $this, 'show' ], 10, 2 ); |
|
| 30 | + add_filter( 'rwmb_meta_boxes', [ $this, 'register' ] ); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
@@ -36,12 +36,12 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | public function register() |
| 38 | 38 | { |
| 39 | - if( current_user_can( 'switch_themes' )) { |
|
| 39 | + if( current_user_can( 'switch_themes' ) ) { |
|
| 40 | 40 | $this->addInstructions(); |
| 41 | 41 | } |
| 42 | 42 | $metaboxes = func_num_args() |
| 43 | - ? $this->app->make( 'Helper' )->toArray( func_get_arg(0) ) |
|
| 44 | - : []; |
|
| 43 | + ? $this->app->make( 'Helper' )->toArray( func_get_arg( 0 ) ) |
|
| 44 | + : [ ]; |
|
| 45 | 45 | return array_merge( $metaboxes, $this->metaboxes ); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -52,11 +52,11 @@ discard block |
||
| 52 | 52 | public function show( $bool, array $metabox ) |
| 53 | 53 | { |
| 54 | 54 | if( defined( 'DOING_AJAX' ) |
| 55 | - || !isset( $metabox['condition'] ) |
|
| 56 | - || !$this->hasPostType( $metabox )) { |
|
| 55 | + || !isset( $metabox[ 'condition' ] ) |
|
| 56 | + || !$this->hasPostType( $metabox ) ) { |
|
| 57 | 57 | return $bool; |
| 58 | 58 | } |
| 59 | - return $this->validate( $metabox['condition'] ); |
|
| 59 | + return $this->validate( $metabox[ 'condition' ] ); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | */ |
| 65 | 65 | protected function getPostId() |
| 66 | 66 | { |
| 67 | - if( !( $postId = filter_input( INPUT_GET, 'post' ))) { |
|
| 67 | + if( !( $postId = filter_input( INPUT_GET, 'post' ) ) ) { |
|
| 68 | 68 | $postId = filter_input( INPUT_POST, 'post_ID' ); |
| 69 | 69 | } |
| 70 | 70 | return intval( $postId ); |
@@ -77,10 +77,10 @@ discard block |
||
| 77 | 77 | { |
| 78 | 78 | return array_unique( iterator_to_array( |
| 79 | 79 | new RecursiveIteratorIterator( |
| 80 | - new RecursiveArrayIterator( array_column( $this->metaboxes, 'post_types' )) |
|
| 80 | + new RecursiveArrayIterator( array_column( $this->metaboxes, 'post_types' ) ) |
|
| 81 | 81 | ), |
| 82 | 82 | false |
| 83 | - )); |
|
| 83 | + ) ); |
|
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | /** |
@@ -88,10 +88,10 @@ discard block |
||
| 88 | 88 | */ |
| 89 | 89 | protected function hasPostType( array $metabox ) |
| 90 | 90 | { |
| 91 | - if( !isset( $metabox['post_types'] )) { |
|
| 91 | + if( !isset( $metabox[ 'post_types' ] ) ) { |
|
| 92 | 92 | return true; |
| 93 | 93 | } |
| 94 | - return in_array( get_post_type( $this->getPostId() ), $metabox['post_types'] ); |
|
| 94 | + return in_array( get_post_type( $this->getPostId() ), $metabox[ 'post_types' ] ); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
@@ -99,15 +99,15 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | protected function normalize() |
| 101 | 101 | { |
| 102 | - foreach( $this->app->config['meta_boxes'] as $id => $metabox ) { |
|
| 102 | + foreach( $this->app->config[ 'meta_boxes' ] as $id => $metabox ) { |
|
| 103 | 103 | $defaults = [ |
| 104 | - 'condition' => [], |
|
| 105 | - 'fields' => [], |
|
| 104 | + 'condition' => [ ], |
|
| 105 | + 'fields' => [ ], |
|
| 106 | 106 | 'id' => $id, |
| 107 | - 'post_types' => [], |
|
| 107 | + 'post_types' => [ ], |
|
| 108 | 108 | 'slug' => $id, |
| 109 | 109 | ]; |
| 110 | - $this->metaboxes[] = $this->setDependencies( |
|
| 110 | + $this->metaboxes[ ] = $this->setDependencies( |
|
| 111 | 111 | $this->normalizeThis( $metabox, $defaults, $id ) |
| 112 | 112 | ); |
| 113 | 113 | } |
@@ -131,8 +131,8 @@ discard block |
||
| 131 | 131 | protected function normalizeFields( array $fields, array $data, $parentId ) |
| 132 | 132 | { |
| 133 | 133 | return array_map( function( $id, $field ) use( $parentId ) { |
| 134 | - $defaults = [ |
|
| 135 | - 'attributes' => [], |
|
| 134 | + $defaults = [ |
|
| 135 | + 'attributes' => [ ], |
|
| 136 | 136 | // 'condition' => [], |
| 137 | 137 | 'depends' => '', |
| 138 | 138 | 'id' => $id, |
@@ -167,11 +167,11 @@ discard block |
||
| 167 | 167 | */ |
| 168 | 168 | protected function setDependencies( array $metabox ) |
| 169 | 169 | { |
| 170 | - $fields = &$metabox['fields']; |
|
| 170 | + $fields = &$metabox[ 'fields' ]; |
|
| 171 | 171 | $depends = array_column( $fields, 'depends' ); |
| 172 | 172 | array_walk( $depends, function( $value, $index ) use( &$fields ) { |
| 173 | - if( empty( $value ))return; |
|
| 174 | - $fields[$index]['attributes']['data-depends'] = $value; |
|
| 173 | + if( empty( $value ) )return; |
|
| 174 | + $fields[ $index ][ 'attributes' ][ 'data-depends' ] = $value; |
|
| 175 | 175 | }); |
| 176 | 176 | return $metabox; |
| 177 | 177 | } |
@@ -35,9 +35,9 @@ discard block |
||
| 35 | 35 | protected function normalizeCondition( $conditions ) |
| 36 | 36 | { |
| 37 | 37 | $conditions = $this->app->make( 'Helper' )->toArray( $conditions ); |
| 38 | - if( count( array_filter( array_keys( $conditions ), 'is_string' )) == 0 ) { |
|
| 38 | + if( count( array_filter( array_keys( $conditions ), 'is_string' ) ) == 0 ) { |
|
| 39 | 39 | foreach( $conditions as $key ) { |
| 40 | - $conditions[str_replace( '!', '', $key )] = substr( $key, 0, 1 ) == '!' ? 0 : 1; |
|
| 40 | + $conditions[ str_replace( '!', '', $key ) ] = substr( $key, 0, 1 ) == '!' ? 0 : 1; |
|
| 41 | 41 | } |
| 42 | 42 | $conditions = array_filter( $conditions, function( $key ) { |
| 43 | 43 | return !is_numeric( $key ); |
@@ -46,7 +46,7 @@ discard block |
||
| 46 | 46 | $hook = sprintf( 'pollux/%s/conditions', $this->app->make( 'Helper' )->getClassname() ); |
| 47 | 47 | return array_intersect_key( |
| 48 | 48 | $conditions, |
| 49 | - array_flip( apply_filters( $hook, static::$conditions )) |
|
| 49 | + array_flip( apply_filters( $hook, static::$conditions ) ) |
|
| 50 | 50 | ); |
| 51 | 51 | } |
| 52 | 52 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | */ |
| 93 | 93 | protected function validateIsFrontPage( $value ) |
| 94 | 94 | { |
| 95 | - return $value == ( $this->getPostId() == get_option( 'page_on_front' )); |
|
| 95 | + return $value == ( $this->getPostId() == get_option( 'page_on_front' ) ); |
|
| 96 | 96 | } |
| 97 | 97 | |
| 98 | 98 | /** |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | protected function validateIsHome( $value ) |
| 103 | 103 | { |
| 104 | - return $value == ( $this->getPostId() == get_option( 'page_for_posts' )); |
|
| 104 | + return $value == ( $this->getPostId() == get_option( 'page_for_posts' ) ); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | */ |
| 111 | 111 | protected function validateIsPageTemplate( $value ) |
| 112 | 112 | { |
| 113 | - return basename( get_page_template_slug( $this->getPostId() )) == $value; |
|
| 113 | + return basename( get_page_template_slug( $this->getPostId() ) ) == $value; |
|
| 114 | 114 | } |
| 115 | 115 | |
| 116 | 116 | /** |
@@ -14,7 +14,7 @@ discard block |
||
| 14 | 14 | /** |
| 15 | 15 | * @var array |
| 16 | 16 | */ |
| 17 | - public $metaboxes = []; |
|
| 17 | + public $metaboxes = [ ]; |
|
| 18 | 18 | |
| 19 | 19 | /** |
| 20 | 20 | * @return void |
@@ -23,18 +23,18 @@ discard block |
||
| 23 | 23 | { |
| 24 | 24 | if( !count( array_filter( $this->metaboxes, function( $metabox ) { |
| 25 | 25 | return $this->show( false, $metabox ); |
| 26 | - })))return; |
|
| 27 | - $this->metaboxes[] = [ |
|
| 26 | + }) ) )return; |
|
| 27 | + $this->metaboxes[ ] = [ |
|
| 28 | 28 | 'id' => 'infodiv', |
| 29 | 29 | 'post_types' => $this->getPostTypes(), |
| 30 | 30 | 'title' => __( 'How to use in your theme', 'pollux' ), |
| 31 | 31 | 'context' => 'side', |
| 32 | 32 | 'priority' => 'low', |
| 33 | - 'fields' => [[ |
|
| 33 | + 'fields' => [ [ |
|
| 34 | 34 | 'slug' => '', |
| 35 | 35 | 'std' => $this->generateInstructions(), |
| 36 | 36 | 'type' => 'custom_html', |
| 37 | - ]], |
|
| 37 | + ] ], |
|
| 38 | 38 | ]; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -44,12 +44,12 @@ discard block |
||
| 44 | 44 | protected function generateInstructions() |
| 45 | 45 | { |
| 46 | 46 | return array_reduce( $this->getInstructions(), function( $html, $metabox ) { |
| 47 | - $fields = array_reduce( array_column( $metabox['fields'], 'slug' ), function( $html, $slug ) use( $metabox ) { |
|
| 47 | + $fields = array_reduce( array_column( $metabox[ 'fields' ], 'slug' ), function( $html, $slug ) use( $metabox ) { |
|
| 48 | 48 | $hook = sprintf( 'pollux/%s/instruction', $this->make( 'Helper' )->getClassname() ); |
| 49 | - return $html . apply_filters( $hook, "PostMeta::get('{$slug}');", $slug, $metabox['slug'] ) . PHP_EOL; |
|
| 49 | + return $html . apply_filters( $hook, "PostMeta::get('{$slug}');", $slug, $metabox[ 'slug' ] ) . PHP_EOL; |
|
| 50 | 50 | }); |
| 51 | 51 | return $html . sprintf( '<p><strong>%s</strong></p><pre class="my-sites nav-tab-active misc-pub-section">%s</pre>', |
| 52 | - $metabox['title'], |
|
| 52 | + $metabox[ 'title' ], |
|
| 53 | 53 | $fields |
| 54 | 54 | ); |
| 55 | 55 | }); |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | protected function getInstructions() |
| 62 | 62 | { |
| 63 | 63 | return array_filter( $this->metaboxes, function( $metabox ) { |
| 64 | - return $this->validate( $metabox['condition'] ) |
|
| 64 | + return $this->validate( $metabox[ 'condition' ] ) |
|
| 65 | 65 | && $this->hasPostType( $metabox ); |
| 66 | 66 | }); |
| 67 | 67 | } |