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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
<?php
namespace SIW\Admin;
use SIW\Admin\Notices as Admin_Notices;
class Admin_Bar {
protected static $nodes = [];
protected static $actions = [];
public static function init() {
$self = new self();
add_action( 'admin_bar_menu', [ $self, 'remove_nodes'], PHP_INT_MAX );
add_action( 'admin_bar_menu', [ $self, 'add_logo'], 1 );
add_action( 'admin_bar_menu', [ $self, 'add_environment'], 2 );
add_action( 'admin_bar_menu', [ $self, 'add_action_triggers'], 3 );
add_action( 'init', [ $self, 'process_action_triggers' ] );
}
public function remove_nodes( \WP_Admin_Bar $wp_admin_bar ) {
$wp_admin_bar->remove_node( 'wp-logo' );
$wp_admin_bar->remove_node( 'site-name' );
$wp_admin_bar->remove_node( 'comments' );
$wp_admin_bar->remove_node( 'new-content' );
}
public function add_logo( \WP_Admin_Bar $wp_admin_bar ) {
$logo_args = [
'id' => 'siw-logo',
'meta' => [
'class' => 'siw-logo',
'title' => 'SIW',
],
];
$wp_admin_bar->add_node( $logo_args );
}
public function add_environment( \WP_Admin_Bar $wp_admin_bar ) {
$url_args = [
'id' => 'siw-url',
'title' => sprintf( __( 'Je bent ingelogd op: %s', 'siw' ), site_url() ),
];
$wp_admin_bar->add_node( $url_args );
}
public function add_action_triggers( \WP_Admin_Bar $wp_admin_bar ) {
if ( ! current_user_can( 'manage_options' ) || empty( self::$actions ) ) {
return;
}
$args = [
'id' => 'siw-actions',
'title' => __( 'Start actie', 'siw' ),
'href' => '#',
];
$wp_admin_bar->add_node( $args );
$nodes = wp_list_sort( self::$nodes, 'title', 'asc', true );
foreach ( $nodes as $node => $properties ) {
$args = [
'parent' => ( isset( $properties['parent'] ) ) ? 'siw-' . $properties['parent'] . '-actions' : 'siw-actions',
'id' => 'siw-' .$node . '-actions',
'title' => $properties['title'],
];
$wp_admin_bar->add_node( $args );
}
$referer = '&_wp_http_referer=' . rawurlencode( wp_unslash( $_SERVER['REQUEST_URI'] ) );
$actions = wp_list_sort( self::$actions, 'title', 'asc', true );
foreach ( $actions as $action => $properties ) {
$args = [
'parent' => ( isset( $properties['parent'] ) ) ? 'siw-' . $properties['parent'] . '-actions' : 'siw-actions',
'id' => "siw-action-{$action}",
'title' => $properties['title'],
'href' => wp_nonce_url( admin_url( "admin-post.php?siw-action={$action}{$referer}" ), 'siw-action' ),
];
$wp_admin_bar->add_node( $args );
}
}
public function process_action_triggers() {
if ( ! isset( $_GET['siw-action'] ) || ! isset( $_GET['_wpnonce'] ) || ! wp_verify_nonce( $_GET['_wpnonce'], 'siw-action') ) {
return;
}
$action = esc_attr( trim( $_REQUEST['siw-action']) );
if ( ! in_array( $action, array_keys( self::$actions ) ) ) {
return;
}
do_action( "siw_{$action}" );
$notices = new Admin_Notices;
$notices->add_notice( 'success', sprintf( __( 'Proces gestart: %s', 'siw' ), self::$actions[ $action ]['title'] ), true );
wp_redirect( wp_get_referer() );
}
public static function add_node( $node, $properties ) {
self::$nodes[ $node ] = $properties;
}
public static function add_action( $action, $properties ) {
self::$actions[ $action ] = $properties;
}
}