@@ -55,7 +55,8 @@ discard block |
||
| 55 | 55 | public function filterBeforeInstructions() |
| 56 | 56 | { |
| 57 | 57 | return sprintf( '<pre class="my-sites nav-tab-active misc-pub-section">%s</pre>', |
| 58 | - array_reduce( ['title', 'content', 'featured'], function( $instructions, $id ) { |
|
| 58 | + array_reduce( ['title', 'content', 'featured'], function( $instructions, $id ) |
|
| 59 | + { |
|
| 59 | 60 | return $instructions . $this->filterInstruction( null, ['slug' => $id], ['slug' => $this->getPostType()] ) . PHP_EOL; |
| 60 | 61 | }) |
| 61 | 62 | ); |
@@ -100,7 +101,9 @@ discard block |
||
| 100 | 101 | */ |
| 101 | 102 | public function registerFeaturedImageMetaBox() |
| 102 | 103 | { |
| 103 | - if( !current_user_can( 'upload_files' ))return; |
|
| 104 | + if( !current_user_can( 'upload_files' )) { |
|
| 105 | + return; |
|
| 106 | + } |
|
| 104 | 107 | add_meta_box( 'postimagediv', __( 'Featured Image', 'pollux' ), [$this, 'renderFeaturedImageMetaBox'], null, 'side', 'low' ); |
| 105 | 108 | } |
| 106 | 109 | |
@@ -156,7 +159,9 @@ discard block |
||
| 156 | 159 | public function renderPage() |
| 157 | 160 | { |
| 158 | 161 | $type = $this->getPostType(); |
| 159 | - if( empty( $type ))return; |
|
| 162 | + if( empty( $type )) { |
|
| 163 | + return; |
|
| 164 | + } |
|
| 160 | 165 | $labels = get_post_type_labels( get_post_type_object( $type )); |
| 161 | 166 | $this->render( 'archive/index', [ |
| 162 | 167 | 'columns' => get_current_screen()->get_columns(), |
@@ -192,7 +197,8 @@ discard block |
||
| 192 | 197 | */ |
| 193 | 198 | protected function getPostTypesWithArchive() |
| 194 | 199 | { |
| 195 | - $types = array_map( function( $value ) { |
|
| 200 | + $types = array_map( function( $value ) |
|
| 201 | + { |
|
| 196 | 202 | return sprintf( 'edit.php?post_type=%s', $value ); |
| 197 | 203 | }, get_post_types( ['has_archive' => 1] )); |
| 198 | 204 | return array_merge( $types, ['post' => 'edit.php'] ); |
@@ -154,6 +154,7 @@ |
||
| 154 | 154 | } |
| 155 | 155 | |
| 156 | 156 | /** |
| 157 | + * @param integer $imageId |
|
| 157 | 158 | * @return void |
| 158 | 159 | * @callback add_meta_box |
| 159 | 160 | */ |
@@ -22,8 +22,10 @@ discard block |
||
| 22 | 22 | */ |
| 23 | 23 | protected function generateInstructions() |
| 24 | 24 | { |
| 25 | - $instructions = array_reduce( $this->getInstructions(), function( $html, $metabox ) { |
|
| 26 | - $fields = array_reduce( $metabox['fields'], function( $html, $field ) use( $metabox ) { |
|
| 25 | + $instructions = array_reduce( $this->getInstructions(), function( $html, $metabox ) |
|
| 26 | + { |
|
| 27 | + $fields = array_reduce( $metabox['fields'], function( $html, $field ) use( $metabox ) |
|
| 28 | + { |
|
| 27 | 29 | return $this->validate( $field['condition'] ) |
| 28 | 30 | ? $html . $this->filter( 'instruction', "PostMeta::get('{$field['slug']}');", $field, $metabox ) . PHP_EOL |
| 29 | 31 | : $html; |
@@ -41,7 +43,8 @@ discard block |
||
| 41 | 43 | */ |
| 42 | 44 | protected function getInstructions() |
| 43 | 45 | { |
| 44 | - return array_filter( $this->metaboxes, function( $metabox ) { |
|
| 46 | + return array_filter( $this->metaboxes, function( $metabox ) |
|
| 47 | + { |
|
| 45 | 48 | return $this->validate( $metabox['condition'] ) |
| 46 | 49 | && $this->hasPostType( $metabox ); |
| 47 | 50 | }); |
@@ -52,7 +55,9 @@ discard block |
||
| 52 | 55 | */ |
| 53 | 56 | protected function initInstructions() |
| 54 | 57 | { |
| 55 | - if( !$this->showInstructions() )return; |
|
| 58 | + if( !$this->showInstructions() ) { |
|
| 59 | + return; |
|
| 60 | + } |
|
| 56 | 61 | return [ |
| 57 | 62 | 'infodiv' => [ |
| 58 | 63 | 'context' => 'side', |
@@ -73,7 +78,8 @@ discard block |
||
| 73 | 78 | */ |
| 74 | 79 | protected function showInstructions() |
| 75 | 80 | { |
| 76 | - return $this->filter( 'show/instructions', count( array_filter( $this->metaboxes, function( $metabox ) { |
|
| 81 | + return $this->filter( 'show/instructions', count( array_filter( $this->metaboxes, function( $metabox ) |
|
| 82 | + { |
|
| 77 | 83 | return $this->show( false, $metabox ); |
| 78 | 84 | })) > 0 ); |
| 79 | 85 | } |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | |
| 63 | 63 | /** |
| 64 | 64 | * @param string $key |
| 65 | - * @param mixed $fallback |
|
| 65 | + * @param string $fallback |
|
| 66 | 66 | * @param string $group |
| 67 | 67 | * @return string|array |
| 68 | 68 | */ |
@@ -31,7 +31,9 @@ discard block |
||
| 31 | 31 | */ |
| 32 | 32 | public function init() |
| 33 | 33 | { |
| 34 | - if( empty( $this->app->config[static::ID] ))return; |
|
| 34 | + if( empty( $this->app->config[static::ID] )) { |
|
| 35 | + return; |
|
| 36 | + } |
|
| 35 | 37 | |
| 36 | 38 | $this->normalize( $this->app->config[static::ID], [ |
| 37 | 39 | 'post_types' => [], |
@@ -199,7 +201,8 @@ discard block |
||
| 199 | 201 | */ |
| 200 | 202 | protected function normalizeFields( array $fields, array $data, $parentId ) |
| 201 | 203 | { |
| 202 | - return array_map( function( $id, $field ) use( $parentId ) { |
|
| 204 | + return array_map( function( $id, $field ) use( $parentId ) |
|
| 205 | + { |
|
| 203 | 206 | $defaults = [ |
| 204 | 207 | 'attributes' => [], |
| 205 | 208 | 'class' => '', |
@@ -238,7 +241,9 @@ discard block |
||
| 238 | 241 | protected function normalizeValidation( array $validation, array $data, $parentId ) |
| 239 | 242 | { |
| 240 | 243 | foreach( ['messages', 'rules'] as $key ) { |
| 241 | - if( empty( $validation[$key] ))continue; |
|
| 244 | + if( empty( $validation[$key] )) { |
|
| 245 | + continue; |
|
| 246 | + } |
|
| 242 | 247 | foreach( $validation[$key] as $id => $value ) { |
| 243 | 248 | $validation[$key][$this->normalizeFieldName( $id, ['slug' => $id], $parentId )] = $value; |
| 244 | 249 | unset( $validation[$key][$id] ); |
@@ -254,8 +259,11 @@ discard block |
||
| 254 | 259 | { |
| 255 | 260 | $fields = &$metabox['fields']; |
| 256 | 261 | $depends = array_column( $fields, 'depends' ); |
| 257 | - array_walk( $depends, function( $value, $index ) use( &$fields, $metabox ) { |
|
| 258 | - if( empty( $value ))return; |
|
| 262 | + array_walk( $depends, function( $value, $index ) use( &$fields, $metabox ) |
|
| 263 | + { |
|
| 264 | + if( empty( $value )) { |
|
| 265 | + return; |
|
| 266 | + } |
|
| 259 | 267 | $dependency = array_search( $value, array_column( $fields, 'id' )); |
| 260 | 268 | $fields[$index]['attributes']['data-depends'] = $value; |
| 261 | 269 | if( !$this->getMetaValue( $fields[$dependency]['slug'], '', $metabox['slug'] )) { |
@@ -23,7 +23,9 @@ discard block |
||
| 23 | 23 | */ |
| 24 | 24 | public function init() |
| 25 | 25 | { |
| 26 | - if( !$this->app->config['disable_posts'] )return; |
|
| 26 | + if( !$this->app->config['disable_posts'] ) { |
|
| 27 | + return; |
|
| 28 | + } |
|
| 27 | 29 | |
| 28 | 30 | add_action( 'init', [$this, 'disable'] ); |
| 29 | 31 | add_action( 'wp_dashboard_setup', [$this, 'modifyDashboardWidgets'] ); |
@@ -43,7 +45,9 @@ discard block |
||
| 43 | 45 | { |
| 44 | 46 | if( !in_array(( new Helper )->getCurrentScreen()->pagenow, [ |
| 45 | 47 | 'edit.php', 'edit-tags.php', 'post-new.php', |
| 46 | - ]))return; |
|
| 48 | + ])) { |
|
| 49 | + return; |
|
| 50 | + } |
|
| 47 | 51 | |
| 48 | 52 | if( !filter_input_array( INPUT_GET, [ |
| 49 | 53 | 'post_type' => FILTER_DEFAULT, |
@@ -95,12 +99,17 @@ discard block |
||
| 95 | 99 | */ |
| 96 | 100 | public function modifyDashboardWidgets() |
| 97 | 101 | { |
| 98 | - if( !is_blog_admin() || !current_user_can( 'edit_posts' ))return; |
|
| 102 | + if( !is_blog_admin() || !current_user_can( 'edit_posts' )) { |
|
| 103 | + return; |
|
| 104 | + } |
|
| 99 | 105 | |
| 100 | 106 | global $wp_meta_boxes; |
| 101 | 107 | $widgets = &$wp_meta_boxes['dashboard']['normal']['core']; |
| 102 | - if( !isset( $widgets['dashboard_right_now']['callback'] ))return; |
|
| 103 | - $widgets['dashboard_right_now']['callback'] = function() { |
|
| 108 | + if( !isset( $widgets['dashboard_right_now']['callback'] )) { |
|
| 109 | + return; |
|
| 110 | + } |
|
| 111 | + $widgets['dashboard_right_now']['callback'] = function() |
|
| 112 | + { |
|
| 104 | 113 | ob_start(); |
| 105 | 114 | wp_dashboard_right_now(); |
| 106 | 115 | echo preg_replace( '/<li class="post-count">(.*?)<\/li>/', '', ob_get_clean() ); |
@@ -26,7 +26,9 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public function filterWordPressFooter( $text ) |
| 28 | 28 | { |
| 29 | - if( $this->app->config['remove_wordpress_footer'] )return; |
|
| 29 | + if( $this->app->config['remove_wordpress_footer'] ) { |
|
| 30 | + return; |
|
| 31 | + } |
|
| 30 | 32 | return $text; |
| 31 | 33 | } |
| 32 | 34 | |
@@ -63,7 +65,9 @@ discard block |
||
| 63 | 65 | */ |
| 64 | 66 | public function removeDashboardWidgets() |
| 65 | 67 | { |
| 66 | - if( !$this->app->config['remove_dashboard_widgets'] )return; |
|
| 68 | + if( !$this->app->config['remove_dashboard_widgets'] ) { |
|
| 69 | + return; |
|
| 70 | + } |
|
| 67 | 71 | $widgets = apply_filters( 'pollux/dashoard/widgets', [ |
| 68 | 72 | 'dashboard_quick_press', |
| 69 | 73 | ]); |
@@ -78,7 +82,9 @@ discard block |
||
| 78 | 82 | */ |
| 79 | 83 | public function removeWordPressMenu() |
| 80 | 84 | { |
| 81 | - if( !$this->app->config['remove_wordpress_menu'] )return; |
|
| 85 | + if( !$this->app->config['remove_wordpress_menu'] ) { |
|
| 86 | + return; |
|
| 87 | + } |
|
| 82 | 88 | global $wp_admin_bar; |
| 83 | 89 | $wp_admin_bar->remove_menu( 'wp-logo' ); |
| 84 | 90 | } |
@@ -41,7 +41,9 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public function init() |
| 43 | 43 | { |
| 44 | - if( empty( $this->app->config[static::ID] ))return; |
|
| 44 | + if( empty( $this->app->config[static::ID] )) { |
|
| 45 | + return; |
|
| 46 | + } |
|
| 45 | 47 | if( is_bool( $this->app->config[static::ID] )) { |
| 46 | 48 | $this->app->config[static::ID] = []; |
| 47 | 49 | } |
@@ -143,7 +145,9 @@ discard block |
||
| 143 | 145 | */ |
| 144 | 146 | public function register() |
| 145 | 147 | { |
| 146 | - if(( new Helper )->getCurrentScreen()->id != $this->hook )return; |
|
| 148 | + if(( new Helper )->getCurrentScreen()->id != $this->hook ) { |
|
| 149 | + return; |
|
| 150 | + } |
|
| 147 | 151 | foreach( parent::register() as $metabox ) { |
| 148 | 152 | new RWMetaBox( $metabox, static::ID, $this ); |
| 149 | 153 | } |
@@ -169,7 +173,9 @@ discard block |
||
| 169 | 173 | */ |
| 170 | 174 | public function renderFooterScript() |
| 171 | 175 | { |
| 172 | - if(( new Helper )->getCurrentScreen()->id != $this->hook )return; |
|
| 176 | + if(( new Helper )->getCurrentScreen()->id != $this->hook ) { |
|
| 177 | + return; |
|
| 178 | + } |
|
| 173 | 179 | $this->render( 'settings/script', [ |
| 174 | 180 | 'confirm' => __( 'Are you sure want to do this?', 'pollux' ), |
| 175 | 181 | 'hook' => $this->hook, |
@@ -217,7 +223,9 @@ discard block |
||
| 217 | 223 | { |
| 218 | 224 | if( filter_input( INPUT_GET, 'page' ) !== static::id() |
| 219 | 225 | || filter_input( INPUT_GET, 'action' ) !== 'reset' |
| 220 | - )return; |
|
| 226 | + ) { |
|
| 227 | + return; |
|
| 228 | + } |
|
| 221 | 229 | if( wp_verify_nonce( filter_input( INPUT_GET, '_wpnonce' ), $this->hook )) { |
| 222 | 230 | update_option( static::id(), $this->getDefaults() ); |
| 223 | 231 | add_settings_error( static::id(), 'reset', __( 'Reset successful.', 'pollux' ), 'updated' ); |
@@ -236,7 +244,8 @@ discard block |
||
| 236 | 244 | */ |
| 237 | 245 | protected function filterArrayByKey( array $array, $key ) |
| 238 | 246 | { |
| 239 | - return array_filter( $array, function( $value ) use( $key ) { |
|
| 247 | + return array_filter( $array, function( $value ) use( $key ) |
|
| 248 | + { |
|
| 240 | 249 | return !empty( $value[$key] ); |
| 241 | 250 | }); |
| 242 | 251 | } |
@@ -248,8 +257,10 @@ discard block |
||
| 248 | 257 | { |
| 249 | 258 | $metaboxes = $this->filterArrayByKey( $this->metaboxes, 'slug' ); |
| 250 | 259 | |
| 251 | - array_walk( $metaboxes, function( &$metabox ) { |
|
| 252 | - $fields = array_map( function( $field ) { |
|
| 260 | + array_walk( $metaboxes, function( &$metabox ) |
|
| 261 | + { |
|
| 262 | + $fields = array_map( function( $field ) |
|
| 263 | + { |
|
| 253 | 264 | $field = wp_parse_args( $field, ['std' => ''] ); |
| 254 | 265 | return [$field['slug'] => $field['std']]; |
| 255 | 266 | }, $this->filterArrayByKey( $metabox['fields'], 'slug' )); |
@@ -45,7 +45,9 @@ discard block |
||
| 45 | 45 | */ |
| 46 | 46 | public function init() |
| 47 | 47 | { |
| 48 | - if( empty( $this->app->config['post_types'] ))return; |
|
| 48 | + if( empty( $this->app->config['post_types'] )) { |
|
| 49 | + return; |
|
| 50 | + } |
|
| 49 | 51 | |
| 50 | 52 | $this->setColumns(); |
| 51 | 53 | $this->normalize(); |
@@ -64,7 +66,8 @@ discard block |
||
| 64 | 66 | $this->types, |
| 65 | 67 | get_post_types( ['_builtin' => true] ) |
| 66 | 68 | ); |
| 67 | - array_walk( $types, function( $args, $type ) { |
|
| 69 | + array_walk( $types, function( $args, $type ) |
|
| 70 | + { |
|
| 68 | 71 | register_post_type( $type, array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
| 69 | 72 | }); |
| 70 | 73 | } |
@@ -35,7 +35,9 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function init() |
| 37 | 37 | { |
| 38 | - if( empty( $this->app->config['taxonomies'] ))return; |
|
| 38 | + if( empty( $this->app->config['taxonomies'] )) { |
|
| 39 | + return; |
|
| 40 | + } |
|
| 39 | 41 | |
| 40 | 42 | $this->normalize(); |
| 41 | 43 | |
@@ -50,10 +52,14 @@ discard block |
||
| 50 | 52 | */ |
| 51 | 53 | public function filterByTaxonomy( WP_Query $query ) |
| 52 | 54 | { |
| 53 | - if( !is_admin() || ( new Helper )->getCurrentScreen()->base != 'edit' )return; |
|
| 55 | + if( !is_admin() || ( new Helper )->getCurrentScreen()->base != 'edit' ) { |
|
| 56 | + return; |
|
| 57 | + } |
|
| 54 | 58 | $vars = &$query->query_vars; |
| 55 | 59 | foreach( array_keys( $this->taxonomies ) as $taxonomy ) { |
| 56 | - if( !isset( $vars[$taxonomy] ))return; |
|
| 60 | + if( !isset( $vars[$taxonomy] )) { |
|
| 61 | + return; |
|
| 62 | + } |
|
| 57 | 63 | if( $term = get_term_by( 'id', $vars[$taxonomy], $taxonomy )) { |
| 58 | 64 | $vars[$taxonomy] = $term->slug; |
| 59 | 65 | } |
@@ -69,7 +75,9 @@ discard block |
||
| 69 | 75 | { |
| 70 | 76 | global $wp_query; |
| 71 | 77 | foreach( $this->taxonomies as $taxonomy => $args ) { |
| 72 | - if( !in_array( get_current_screen()->post_type, $args['post_types'] ))continue; |
|
| 78 | + if( !in_array( get_current_screen()->post_type, $args['post_types'] )) { |
|
| 79 | + continue; |
|
| 80 | + } |
|
| 73 | 81 | $selected = isset( $wp_query->query[$taxonomy] ) |
| 74 | 82 | ? $wp_query->query[$taxonomy] |
| 75 | 83 | : false; |
@@ -90,7 +98,8 @@ discard block |
||
| 90 | 98 | */ |
| 91 | 99 | public function register() |
| 92 | 100 | { |
| 93 | - array_walk( $this->taxonomies, function( $args, $taxonomy ) { |
|
| 101 | + array_walk( $this->taxonomies, function( $args, $taxonomy ) |
|
| 102 | + { |
|
| 94 | 103 | register_taxonomy( $taxonomy, $args['post_types'], array_diff_key( $args, array_flip( static::CUSTOM_KEYS ))); |
| 95 | 104 | foreach( $args['post_types'] as $type ) { |
| 96 | 105 | register_taxonomy_for_object_type( $taxonomy, $type ); |