1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
<?php
namespace SIW\Admin;
use SIW\Admin\User_Columns;
use SIW\Properties;
class Admin {
public static function init() {
$self = new self();
add_action( 'admin_enqueue_scripts', [ $self, 'enqueue_admin_style'] );
add_action( 'admin_menu', [ $self, 'hide_pages'], PHP_INT_MAX );
add_action( 'admin_init', [ $self, 'hide_dashboard_widgets'] );
add_filter( 'admin_footer_text', [ $self, 'set_admin_footer_text'] );
add_filter( 'manage_pages_columns', [ $self, 'remove_pages_columns'] );
add_action( 'admin_menu', [ $self, 'remove_page_metaboxes' ] );
add_action( 'admin_menu', [ $self, 'change_menu_items' ], PHP_INT_MAX );
add_filter( 'show_admin_bar', '__return_false' );
add_action( 'admin_init', [ $self, 'add_user_columns'], 20 );
remove_action( 'try_gutenberg_panel', 'wp_try_gutenberg_panel' );
remove_action( 'welcome_panel', 'wp_welcome_panel' );
}
public function enqueue_admin_style() {
wp_register_style( 'siw-admin', SIW_ASSETS_URL . 'css/admin/siw-admin.css', [], SIW_PLUGIN_VERSION );
wp_enqueue_style( 'siw-admin' );
}
public function hide_pages() {
remove_menu_page( 'edit-comments.php' );
remove_menu_page( 'edit.php' );
remove_menu_page( 'link-manager.php' );
if ( ! current_user_can( 'manage_options' ) ) {
remove_menu_page( 'wppusher');
}
}
public function hide_dashboard_widgets() {
remove_meta_box( 'dashboard_quick_press', 'dashboard', 'side' );
remove_meta_box( 'dashboard_activity', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_right_now', 'dashboard', 'normal' );
remove_meta_box( 'dashboard_primary', 'dashboard', 'normal' );
}
public function set_admin_footer_text() {
return sprintf( '© %s %s', date( 'Y' ), Properties::NAME );
}
public function remove_pages_columns( array $columns ) {
unset( $columns['comments'] );
unset( $columns['author'] );
return $columns;
}
public function remove_page_metaboxes() {
remove_meta_box( 'postcustom' , 'page' , 'normal' );
remove_meta_box( 'commentstatusdiv' , 'page' , 'normal' );
remove_meta_box( 'commentsdiv' , 'page' , 'normal' );
remove_meta_box( 'slugdiv' , 'page' , 'normal' );
remove_meta_box( 'authordiv' , 'page' , 'normal' );
}
protected function menu_search( string $slug, array $menu ) {
$menu_item = wp_list_filter(
$menu,
[ 2 => $slug ]
);
return ! empty( $menu_item ) ? key( $menu_item ) : null;
}
public function change_menu_items() {
global $menu;
$bbq = $this->menu_search( 'bbq_settings', $menu );
if ( $bbq ) {
$menu[ $bbq ][6] = 'dashicons-shield-alt';
}
$kt = $this->menu_search( 'ktoptions', $menu );
if ( $kt ) {
$menu[ $kt ][6] ='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAA+klEQVRIS+2SsQ7BUBSG27Bgl9jFILGJ3WgzeAlv4DXE0ERsVgw2D+Ad+gTewNDQ1nfqNKQJ7Y0Sw/2SP//Re85/3OJYLK+I47gahuEiiqKaPvoNLJ6hmOVzffR9uOUABbIYD9FIj8qF/IqWsrSBfF0qJrc+UTe1pTwIXaKJ1qt0oZDW+B5zk4EyILCLLioPPbZm4GgqM5T1ZPgTCNvcY/Oh94yNcR+1NMIchvv8fliUvFITMedpjBl8c5eAg97EWCwO8LbGFYehoQSYkO3n81rjisGM3PZouliQmSddUU9j86G5w6va5ok+0U78zXnyT7dYLBaL5d9xnBswdjMy+Bkh/AAAAABJRU5ErkJggg==';
}
}
public function add_user_columns() {
if ( ! class_exists( '\MB_Admin_Columns_User' ) ) {
return;
}
new User_Columns( 'user', [] );
}
}